我正在研究由同事创建的新分支。我已经提交了所有更改,当我尝试git pull
时,它会给我一个错误:
$ git pull
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> kiet_tnp
$
我该怎么办?没有git pull
,我无法推送我的代码。
答案 0 :(得分:2)
就像git暗示一样,做:
git branch --set-upstream-to=origin/kiet_tnp kiet_tnp
git pull
假设您的同事创建了kiet_tnp分支,他/她要求您提取。