git - Error when pulling from server -
i getting error when try pull remote webserver, error
fatal: couldn't find remote ref master fatal: remote end hung unexpectedly this after run command git fetch live master or git pull live master
if run git branch though not show moves on next line.
thanks
check .git/config file, in section [branch "master"] must have:
[branch "master"] remote = live merge = refs/heads/master after that, run command git branch -a see available branches.
Comments
Post a Comment