git远程分支带来与本地不同的ssh机器
有2台机器,我使用。
我克隆了一个我工作的应用程序的git存储库。
在机器上我已经克隆了这个回购,已经在我创建和提交并且远程推送的不同分支上的各种功能。
所以远程我现在有3个分支,一个是主人,另外2个分支1,我的功能分支2。
在机器2上我已经克隆了存储库'master'分支。
我的问题是我如何获得我的机器上的branch1,branch2。
这样我就可以从机器2提交东西了。
提前致谢。
(抱歉英语不好)
您可以
git fetch --all
git branch -r # will list all remote branches
git checkout <branch> # notice that the branch name should not have leading 'origin', it is the *local* branch name
git将创建本地分支以相同的名字跟踪远程分支。
也检查这一点。
链接地址: http://www.djcxy.com/p/45127.html上一篇: git remote branch bringing to local with different ssh machine
下一篇: How to sync two different Git repos without making a commit?