Skip to main content

git: show all remotes

git remote -v

shows:

origin	https://github.com/SimpelMe/Braille.git (fetch)
origin	ssh://nas/volume1/git/braille.git (push)
origin	https://github.com/SimpelMe/Braille.git (push)

or more verbose:

git remote show origin

shows:

* Remote-Repository origin
  URL zum Abholen: https://github.com/SimpelMe/Braille.git
  URL zum Versenden: ssh://nas/volume1/git/braille.git
  URL zum Versenden: https://github.com/SimpelMe/Braille.git
  Hauptbranch: master
  Remote-Branches:
    master   gefolgt
    portrait gefolgt
  Lokale Branches konfiguriert für 'git pull':
    master   führt mit Remote-Branch master zusammen
    portrait führt mit Remote-Branch portrait zusammen
  Lokale Referenzen konfiguriert für 'git push':
    master   versendet nach master   (aktuell)
    portrait versendet nach portrait (aktuell)