suchen

Heim  >  Fragen und Antworten  >  Hauptteil

git pull报错

在使用git pull时发生错误

请问有遇到过类似的问题吗? 之前可以pull, 别人更新代码之后就不可以了,帮别人问的,自己也学习一下

習慣沉默習慣沉默2812 Tage vor577

Antworte allen(8)Ich werde antworten

  • PHP中文网

    PHP中文网2017-05-02 09:29:04

    你的分支名 为什么以origin/feature/开头? refspec从来没有这样的格式


    git pull [options] [<repository> [<refspec>...]]
    <repository> should be the name of a remote repository as passed to git-fetch(1). <refspec> can name an arbitrary remote ref (for example, the name of a tag) or even a
    collection of refs with corresponding remote-tracking branches (e.g., refs/heads/:refs/remotes/origin/), but usually it is the name of a branch in the remote repository.

    直接 git pull origin 360xxx

    Antwort
    0
  • 阿神

    阿神2017-05-02 09:29:04

    你分支是不是写错了。。。

    Antwort
    0
  • 为情所困

    为情所困2017-05-02 09:29:04

    提示说了找不到远程分支的引用,有可能分支名错了,有可能引用被删除了,你用git branch -a命令查看一下,看有没有对应的分支

    Antwort
    0
  • 我想大声告诉你

    我想大声告诉你2017-05-02 09:29:04

    你的分支名错了。

    默认是origin master

    Antwort
    0
  • 阿神

    阿神2017-05-02 09:29:04

    git pull origin 360liuxueDisPage

    Antwort
    0
  • 漂亮男人

    漂亮男人2017-05-02 09:29:04

    git pull origin master

    Antwort
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-02 09:29:04

    你只能将一个分支拉下来,可以使用git pull origin feature:develop来将远程的feature分支和本地的develop分支进行合并.因为看你当前是处于develop分支的.

    Antwort
    0
  • 淡淡烟草味

    淡淡烟草味2017-05-02 09:29:04

    这是分支名字有问题!

    Antwort
    0
  • StornierenAntwort