git 删除 commit 信息
文章目录
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#Clone your git repo git clone <repo url>; #Entre your local repo cd lestatzhang.github.io; #Checkout git checkout --orphan latest_branch; #Add all the files git add -A; #Commit the changes git commit -am "Reinitialize"; #Delete the branch git branch -D master; #Rename the current branch to master git branch -m master; #Finally, force update your repository git push -f origin master; |
文章作者 yunxi
上次更新 2019-10-28