我有一个GIT问题。我在分支xx,我用git status
确认。但是git branch
显示了一堆分支,在分支xx旁边没有*
。并且xx分支不是绿色。我尝试了git branch -u origin/xx
,但仍然没有看到*
。我尝试了git pull
并收到此错误:
Your configuration specifies to merge with the ref 'refs/heads/xx'
from the remote, but no such ref was fetched.
有什么建议让我的xx分支映射到原始xx分支,并执行拉动? 谢谢,彼得
答案 0 :(得分:0)
Git remote -v会给出origin分支。
git remote set-url origin(http link)映射到你的原点。
查看文章了解更多详情 - https://help.github.com/articles/changing-a-remote-s-url/