写在前面
以下内容转载自:
[正解] 删除Github仓库某一次commit信息/历史 https://blog.csdn.net/weixin_39278265/article/details/102489362
一、前言
本文旨在说明:
1)在本地github仓库中删除某一次commit 提交信息/历史/记录;
2)如何同步到远程github仓库(使其不显示该commit的信息)。
之所以记这个,因为我在百度上没有看到合适的解决方案,所以感觉有必要在这里记录一下。
二、解决方案
话不多说,直接上解决方案。(精简一点,以前都要说好些废话,说些场景之类的,以后我感觉得酌情说,看情况,没必要说一些废话)
假定现在的情况是:有10个commit,然后git log
查看commit信息:
commit-A 10月
commit-B 9月
commit-C 8月
commit-D 7月
......
commit-n 1月
我现在想删除commit-C这个提交,但同时不影响commit-A,B,D等等其他commits。
1)运行:
git rebase -i HEAD~5
如果出现报错:
fatal: Needed a single revision
invalid upstream –i
主要原因:
当前执行操作的点不在任何分支上,或者可能rebase后面的参数是一个错误的分支;
当前执行操作的点前面的提交不够5个。
解决方法:
切换分支;把HEAD后面的数字改小一点,改成4、3、2试试。
rebase指令的说明:
Rebase (show the log of the last 5 commits and delete the lines you don’t want, or reorder, or squash multiple commits in one, or do anything else you want, this is a very versatile tool)
或者运行:git rebase -i <comit-D-id>
(注意:这里得选择提交时间在commit-C之前的!所以我在此选择了commit-D的id)
2)此时会进入到一个文件中,里面有
pick comit-id xxx
pick comit-id xxx
找到commit-C的id对应的那一行pick,直接把这一行删了就行,然后保存文件,退出即可。
3)运行git log
,此时发现commit 历史中已经没有commit-C啦
4)运行git push -f origin master
,即可同步到远程github仓库。
2.2 备份
如果怕把本地git仓库搞坏了,可以先复制一下这个仓库,作为备份,免得追悔莫及。
补充:删除第一次提交(commit)
参考:如何删除git中的第一个提交? https://cloud.tencent.com/developer/ask/77445
原文链接
[1] [正解] 删除Github仓库某一次commit信息/历史 https://blog.csdn.net/weixin_39278265/article/details/102489362