在未进行git push
前的所有操作,都是在“本地仓库”中执行的。我们暂且将“本地仓库”的代码还原操作叫做“撤销”
情况一:文件被修改了,但未执行git add
操作(working tree 内撤销) (modify file) <==> git checkout <filename>/.
git checkout fileName
git checkout .
情况二:同时对多个文件执行了git add
操作,但本次只想提交其中一部分文件 git add <==> git reset HEAD <filename>
$ git add *
$ git status
# 取消暂存
$ git reset HEAD <filename>
情况三:文件执行了git add
操作,但想撤销对其的修改( index 内回滚) (modify file and add) <==> git reset HEAD <filename> && git checkout <filename>
# 取消暂存
git reset HEAD fileName
# 撤销修改
git checkout fileName
情况四:修改的文件已被git commit
,但想再次修改不再产生新的 Commit git commit <==> git commit --amend -m 'msg'
# 修改最后一次提交
$ git add sample.txt
$ git commit --amend -m"说明"
情况五:已在本地进行了多次git commit
操作,现在想撤销到其中某次 Commit (git multiple commit) <==> git git reset [--hard|soft|mixed|merge|keep] [commit|HEAD]
一般使用 --soft
git reset [--hard|soft|mixed|merge|keep] [commit|HEAD]
上述场景二,已进行git push
,即已推送到“远程仓库”中。我们将已被提交到“远程仓库”的代码还原操作叫做“回滚”!注意:对远程仓库做回滚操作是有风险的,需提前做好备份和通知其他团队成员!
情况一:切换到 tag 或 branch
如果你每次更新线上,都会打 tag,那恭喜你,你可以很快的处理上述场景二的情况 git tag <==> git checkout <tag>
git checkout <tag>
如果你回到当前 HEAD 指向 (git current HEAD) <==> git checkout <branch_name>
git checkout <branch_name>
情况二:撤销指定文件到指定版本 (git file in history) <==> git checkout <commitID> <filename>
# 查看指定文件的历史版本
git log <filename>
# 回滚到指定 commitID
git checkout <commitID> <filename>
情况三:删除最后一次远程提交 git revert HEAD || git reset --hard HEAD^
方式一:使用 revert 会有新的 commit 记录
git revert HEAD
git push origin master
方式二:使用 reset 不会产生新的 commit 记录
git reset --hard HEAD^
git push origin master -f
二者区别:
情况四:回滚某次提交 (git commit in history) <==> git revert <commitID>
# 找到要回滚的 commitID
git log
git revert commitID
同样的,revert 会出现一次新的 commit 提交记录,这里也可以使用 reset
删除某次提交 (git commit in history) <==> git rebase -i <commitID>
git log --oneline -n5
git rebase -i <commit id>^
**注意:**需要注意最后的_^_号,意思是 commit id 的前一次提交
git rebase -i "5b3ba7a"^
在编辑框中删除相关 commit,如pick 5b3ba7a test2
,然后保存退出(如果遇到_冲突_需要先解决_冲突_)!
git push origin master -f
通过上述操作,如果你想对历史多个 commit 进行处理或者,可以选择git rebase -i
,只需删除对应的记录就好。rebase 还可对 commit 消息进行编辑,以及合并多个 commit。
转自: https://blog.csdn.net/ligang2585116/article/details/71094887
我的订阅号:JS 菌;希望能给个关注支持我谢谢~
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.