1

我在本地分支工作,团队成员对该分支进行了一些更改。我如何将他们的更改“拉/取”到我的本地分支?

我不想拉整个回购,只是这个分支。

4

1 回答 1

3

在此结帐之前,请检查您的同事使用的分支

git checkout [branch]    

如果大家都使用master分支,请跳过这一步。

并且只拉一个分支(并与您的本地分支合并)使用这个:

git pull [repo] [branch]

例如:

git pull origin master

如果您只想下载更改并在想要合并之后:

git fetch [repo] [branch]
git merge [repo]/[branch]

例如:

git fetch origin master
git merge origin/master #the local copy of the master branch in origin repo
于 2013-03-11T16:20:56.800 回答