gpt4 book ai didi

git - 为什么我不能从我的远程分支中 pull ?

转载 作者:太空狗 更新时间:2023-10-29 13:48:20 24 4
gpt4 key购买 nike

[console]: git remote -v
origin git@testServer.com:myProj/myProj.git(fetch)
origin git@testServer.com:myProj/myProj.git(push)

[console]: git branch -a
*myBranch
development
remotes/origin/myBranch
remotes/origin/development

[console]: git pull origin/myBranch myBranch
fatal: 'origin/myBranch' does not appear to be a git repository
fatal: Could not read from remote repository

我最初创建了这个分支并且已经 push 了一段时间。虽然昨天我确实从另一个分支 rebase 到我的分支,所以也许这搞砸了什么?

最佳答案

你的语法有误:是git pull [ <em>remote</em> [ <em>branch-name</em> ] ] , 不是 git pull <em>remote</em>/<em>branch-name</em> <em>branch-name</em> .在这种情况下,您需要 git pull origin myBranch .

也就是说,我建议不要使用git pull一点也不,至少在您非常熟悉 Git 之前。原因是 git pull做两件事,第二件事是运行 git merge ,其中:

  • 可能无法自动发生,中途停止,需要您的帮助;
  • 生产 "foxtrot merges" ,这有点倒退,每当它进行真正的 merge 时;
  • 通常最好写成git rebase无论如何。

上半年git pullgit fetch , 所以你可以运行 git fetch然后,在它成功之后,运行 git mergegit rebase如预期的。这两个命令的参数都比 git pull 合理得多。 .

git fetch ,您命名要从中获取的 Remote ,例如 git fetch origin (或者让 git fetch 计算出来:不带参数的 git fetch 通常会自动计算出使用 origin)。

同时git mergegit rebase , 你命名为 origin/myBranch远程跟踪分支,或者让 Git 再次解决。

所有这一切还说,git pull通常也会自己解决所有这些问题。特别是如果 git mergegit rebase可以弄清楚使用origin/myBranch , git pull可以弄清楚使用originorigin/myBranch对于它的两个步骤。

关于git - 为什么我不能从我的远程分支中 pull ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37486438/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com