用戶名和郵箱修改
git config --global user.email johndoe@example.com
刪除commit
- git log 找到commit 上次的commit id
- git rebase -i xxxxxx
- i鍵進入編輯模式 --- pick 改為drop 眷篇,drop為刪除目標
- esc 鍵 退出 ----- :wq 保存
-
無沖突的話 git push --force
用戶名和郵箱修改
git config --global user.email johndoe@example.com
無沖突的話 git push --force