География
Информатика
Вопрос
Как узнать адрес origin репозитория в git
Ответ
origin адрес репозитория
git remote -v
Эта команда покажет все имена репозиториев, где вы можете делать fetch/push.
Пример:
$ git remote -v origin ssh://git@stash.domain.com:7999/bng/backend.git (fetch) origin ssh://git@stash.domain.com:7999/bng/backend.git (push) upstream git@bitbucket.org:repo/backend.git (fetch) upstream git@bitbucket.org:repo/backend.git (push)