..

清空所有git commits

这样的操作,网上可以搜到一大推,此处就是实践后的一个摘录。


  • 1.Checkout
git checkout --orphan latest_branch

    1. Add all the files
git add -A

    1. Commit the changes
git commit -am "commit message"

    1. Delete the branch
git branch -D master

  • 5.Rename the current branch to master
git branch -m master

  • 6.Finally, force update your repository
git push -f origin master

到此,一个新的master诞生了。


Nothing