最近在使用Android的repo和git的过程中遇到了很多莫名奇妙的问题,现在记录一下,便于自己以后的查用。
1.repo sync中遇到error:......checkout ....接一串hashnumber
解决方法:进到它说提示的目录中,用git status显示文件,将修改过的文件删除掉,再重新repo sync
2.repo sync中遇到:contains uncommitted changes
解决方法:进到它说提示的目录中,使用git reset --hard命令
3. 怎么对repo下的所有project执行git命令
解决方法:repo forall -c git checkout --track origin/xxxx -b //该条命令会对repo下的project执行切换branch的命令
4. 怎么切换到你想要的branch
解决方法:git checkout branchName,比如 git checkout testBranch
git checkout --track origin/xxxx -b testbrach //该命令是在本地建立一个新的名为testbrach 来对应远端的origin/xxxx的branch,其中origin/xxxx,需要使用git branch -r来进行查看
5. git pull时遇到unmerged的问题,再切到问题目录下,查看它的branch,出 现Not currently on any branch
解决方法:出现此问题的原因是可能由于你的修改和别人的修改改到一起了,也有可能你有些修改没有git push,这种直接push就好了,其他的情况按照下面的步骤试试:git diff查看冲突的文件,能确定引起冲突的问题话,解决冲突,<<<<<<<<与========之间是你自己的修改,=========与>>>>>>>>是别人都修改,用编辑器编辑留下你要的代码,然后删除掉你冲突的标记符号(<<<<<<,=======,>>>>>>>之类的)。我这个问题恰恰是文件我都没有改过,不是我负责的模块,不确定需要的代码,所以我处理的流程是:git reset -hard,然后git stash,然后git checkout [branch name]切到正确的branch上。
6. 你的代码是在no branch上做的commit,后来你切换到真正的branch上(例如testbranch),这时却找不到原来在no branch上提交的代码,怎么办啊?
解决方法:用git reflog显示近期的ref历史,记住你想要找回来的commit号,merge进来就好了。
Git reflog
Git checkout testbranch
Git merge commitID
Git push
7. 直接使用git pul的出现You asked me to pull without telling me which branch。。。的错误?
解决办法:在使用git pull的时候写全remote name和branch name,例如git pull origin testBranch
原文地址:http://blog.csdn.net/huangxiaohu_coder/article/details/6782260