介绍一些基本的撤销命令
- 提交说明修改
- 同个commit添加遗漏文件
- 取消已暂存的文件
- 取消工作目录已修改的文件
请注意,有些撤销操作是不可逆的,所以请务必谨慎小心,一旦失误,就有可能丢失部分工作成果。
修改最后一次提交
在提交完后发现有漏掉的文件没加或是提交信息写错,需要撤销刚才的操作可使用--amend
选项重新提交
修改commit(提交)说明
# 修改提交内容 提交快照不会改变
$ git commit --amend
启动文本编辑器后,会看到上次提交时的说明,编辑它确认没问题后保存退出,就会使用新的提交说明重写(覆盖)刚才失误的提交。
[图片上传失败...(image-aa9160-1513738059742)]
添加遗漏文件
# 增加遗漏文件
$ git add c.py #添加遗漏文件
$ git commit --amend #修改最后一次提交内容
[图片上传失败...(image-1c4380-1513738059742)]
修改完内容后查看状态,两次add的文件在一次commit里了。
$ git log -2
commit 94bd713367061b415e3c1c132b0e8d50126d6c70 (HEAD -> master)
Author: yin <yjd@zhuming.com>
Date: Wed Dec 20 09:50:20 2017 +0800
fix c
amend
fix b
撤销文件修改
撤销已暂存文件
git reset HEAD file_name
该如何撤消暂存其中的一个文件。其实,git status
的命令输出已经告诉我们了。
$ git add .
$ git status
On branch master
Your branch is ahead of 'origin/master' by 5 commits.
(use "git push" to publish your local commits)
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: b.py
就在 “Changes to be committed” 下面,括号中有提示,可以使用 git reset HEAD <file>...
的方式取消暂存。好吧,我们来试试取消暂存 b.py 文件:
$ git reset HEAD b.py
Unstaged changes after reset:
M b.py
$ git status
On branch master
Your branch is ahead of 'origin/master' by 5 commits.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: b.py
no changes added to commit (use "git add" and/or "git commit -a")
现在b.py文件又回到了之前的已修改未暂存的状态
撤销对文件的修改
git checkout file_name
如果觉得对某个文件的修改完全没必要(要恢复到修改前)。
git status
同样提示了具体的撤销方法
# git status 一部分内容
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: b.py
# 撤销文件b.py的修改
$ git checkout b.py
$ git status
On branch master
Your branch is ahead of 'origin/master' by 5 commits.
(use "git push" to publish your local commits)
nothing to commit, working tree clean
可以看到,该文件已经恢复到修改前的版本。你可能已经意识到了,这条命令有些危险,所有对文件的修改都没有了,因为我们刚刚把之前版本的文件复制过来重写了此文件。所以在用这条命令前,请务必确定真的不再需要保留刚才的修改。
网友评论