用户名和邮箱修改
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