通过git reset
和git checkout
进行版本回退之后再次git pull
抛出以下错误:
1 2 3 4 5 |
You are not currently on a branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull <remote> <branch> |
意思是当前的版本已经不在master
分支了,解决的办法:
git status
查看所有变化的文件,把有改动的先删除。git checkout master
回到主分支。git pull
拉取最新代码。
评论