git修改Commit 提交用户信息 - 码农教程本文章向大家介绍git修改Commit 提交用户信息,主要包括git修改Commit 提交用户信息使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。http://www.manongjc.com/detail/16-hmedvswauemdxmu.html某些情况下会错误的使用了其他人的git信息,那么就需要将提交信息修改成自己的
$ git config user.name 'xxx'
$ git config user.email xxx@xx.com
git commit --amend --reset-author
git rebase --continue
git push --force origin master
master 改成自己的分支