我的git仓库中有两个起源:
/etc/default/tomcat8
我可以毫无问题地进行推拉。
现在,我想查看origin2的远程分支,就可以了。我的尝试:
user@user:$ git remote -v
origin1 https://github.com/Company_Name/repository_name1.git (fetch)
origin1 https://github.com/Company_Name/repository_name1.git (push)
origin2 https://github.com/Company_Name/repository_name2.git (fetch)
origin2 https://github.com/Company_Name/repository_name2.git (push)
但所有分支均来自origin1
答案 0 :(得分:2)
您应该首先获取origin2
遥控器。
提取完成后,您提到的git branch -a
命令应包括该遥控器的分支。
git fetch origin2
git branch -a
P.S。您可能想给您的遥控器一个比origin2
更具描述性的名称。这将减少混淆遥控器的风险。也许upstream
,mirror
,backup
?一切有道理。