标签:style color io ar java for sp 文件 on
1. 进入到文件所在文件目录,或者能找到文件的路径
查看文件的修改记录
git log MainActivity.java
2. 回退到指定的版本
git reset f7a220761c312d47013c394d750528f9acbc3099 MainActivity.java
3. 提交到本地
git commit MainActivity.java -m "reset to revision"
4. 更新到工作目录
git checkout MainActivity.java(或者 git pull . 更新整个目录)
5. 提交到远程仓库
git push origin HEAD:refs/for/branch name
这样就把指定的文件回退到指定的版本了。
标签:style color io ar java for sp 文件 on
原文地址:http://blog.csdn.net/shineflowers/article/details/40431865