Skip to content

git remote#

One final command we can use allows us to configure the remote repositories we're working with: git remote.

We can list our remote easily enough:

1
2
3
$ git remote -v
origin  git@github.com:opsfactoryau/uploadacademy-itopslevelone-a.git (fetch)
origin  git@github.com:opsfactoryau/uploadacademy-itopslevelone-a.git (push

We can add and remove additional and existing remotes as we need to. We don't do this here, and in fact we'll leave this as an exercise to the reader.