当我尝试从远程网络服务器提取时出现错误,错误是
fatal: Couldn't find remote ref master
fatal: The remote end hung up unexpectedly
这是在我运行命令之后
git fetch live master
或git pull live master
如果我运行git branch
虽然它没有显示任何内容,但它只是移动到下一行。
由于
答案 0 :(得分:0)
检查.git/config
文件,在[branch "master"]
部分,您必须拥有:
[branch "master"]
remote = live
merge = refs/heads/master
之后,只需运行命令git branch -a
,您将看到所有可用的分支。