1. リモートリポジトリの追加
1.1. リモートリポジトリの設定
1 |
$ git remote add <リモート名> <URL> |
1 |
$ git remote add azure https://jane@dev.azure.com/our_organization/our_project/_git/our_repo |
1.2. リモートリポジトリからのフェッチ
1 |
$ git fetch <リモート名> |
1 |
$ git fetch azure |