删除git仓库所有提交记录
1.切换到新的分支
git checkout --orphan latest_branch
2.缓存所有文件(除了.gitignore中声明排除的)
git add -A
3.提交跟踪过的文件(Commit the changes)
git commit -am "commit message"
4.删除master分支(Delete the branch)
git branch -D master
5.重命名当前分支为master(Rename the current branch to master)
git branch -m master
6.提交到远程master分支 (Finally, force update your repository)
git push -f origin master注意:只要知道commit id,还是可以看见修改内容,非浏览器缓冲
zuoer 》原创,转载请保留文章出处。
本文链接:删除git仓库所有提交记录 https://www.zuoer.xin/?post=103
版权声明:若无特殊注明,本文皆为《
正文到此结束
管理员已关闭本篇文章评论!