..
清空所有git commits
这样的操作,网上可以搜到一大推,此处就是实践后的一个摘录。
- 1.Checkout
git checkout --orphan latest_branch
-
- Add all the files
git add -A
-
- Commit the changes
git commit -am "commit message"
-
- 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