我正在与一个程序员团队合作完成一个项目。我想从远程存储库(称为 Marshmallow )克隆/拉取特定分支,并且分支的名称称为john/dev/operations
。我怎么能在我的本地存储库中克隆该分支?
提前致谢!
我希望分支可以在这里显示:
└────╼ git branch
dev/jay/cancel-deposit
dev/jay/customize_emailtemplates
dev/jay/perceptions
dev/jay/test
* master
答案 0 :(得分:0)
首先,获取存储库。
$ git fetch origin # assume remote name is origin
然后结帐。
$ git checkout john/dev/operations # create a new local branch with the history of remote same named branch
$ git branch