Git的撤销和回滚命令总结
最近在使用git做项目管理工具,记录自己网上看到的和自己使用到的一些技巧,也方便自己以后翻阅。撤销和回滚某个文件之前,已定要知道自己当前属于哪个工作区,对于不同的工作区使用不同的命令来进行撤销,我一般使用最多的就是git checkout 文件路径和git checkout -- .
1、简单版命令:
工作区:git checkout [文件路径]
暂存区:git reset HEAD~[数字索引1,2,3...]
已提交未push:git reset --hard [版本号,一串哈希值]
已提交已push:git revert [版本号]
2、详细版命令:
一、工作区
1、撤销部分文件的修改
git checkout -- path/to/file1 path/to/file2
或者(git 2.23+)
git restore --worktree path/to/file1 path/to/file2
2、撤销工作区下所有文件的修改(不包括新增文件)
git checkout -- .
或者(git 2.23+)
git restore --worktree .
3、将一个或多个文件回滚到指定版本
git checkout dce33f4 -- path/to/file1 path/to/file2
4、将一个或多个文件回滚到指定版本的前2个版本
git checkout dce33f4 ~2 -- path/to/file1 path/to/file2
5、将一个或多个文件回滚到指定分支版本
git checkout develop -- path/to/file1 path/to/file2
6、丢弃工作区中所有不受版本控制的文件或目录
git clean -fdx
二、暂存区
1、撤销git add到暂存区(Staging area)的部分变更
git reset -- path/to/file1 path/to/file2
或者(git 2.23+)
git restore --staged path/to/file1 path/to/file2
2、撤销git add到暂存区(Staging area)的所有变更
git reset -- .
或者(git 2.23+)
git restore --staged .
三、本地仓库篇
注意:本部分内容的前提是提交到本地仓库的commit还未push到remote。
1、修订最后一次提交的commit message
git commit --amend -m "新的log信息"
2、回滚某次commit的变更(不修改历史),但会生成新的commit
git revert [版本号]
3、抹去本地最新commit
git reset --hard HEAD~1
或者
git rebase -i HEAD~1(然后旋转drop命令)
四、远程仓库篇
注意:
1、 由于远程仓库历史属于团队公共历史,不能随意修改,所以一般不到万不得已,不能进行修改远程历史的操作。
2、 [Warning] 如果一定要修改远程仓库历史,比如去除敏感信息,一定要提前做好团队沟通,使用reset或rebase进行回滚,然后使用git push -f强制推送。
1、针对远程仓库的历史回滚,建议使用revert操作
git revert [版本号]
2、回滚多个commit,但只做一次提交
git revert [版本号]
git commit -m "revert commit1 commit2 commit3"
Tips:
1、用git log可以查看提交历史,以便确定要回退到哪个版本。
2、用git reflog查看命令历史,以便确定要回到未来的哪个版本。