这个教程,错过了,就错过了,各位!!!
@toc
有时候,公司提交的代码必须使用公司邮箱,而你误操作,直接把自己个人邮箱提交上去了,此时你就会遇到这样的需求:如何修改git已提交的邮箱?(因为有些公司是不允许使用个人邮箱提交代码)
master 分支合并到 develop 分支,执行 git push
操作时。
remote: Checking gitlab project <project-6468>
remote: Ref <refs/heads/develop> receiving
remote: Commit rev [fde93ea421c8b93b51ebfbd47ec6bebb9641696a] - Invalid commiter email <123@qq.com>
remote: Check and confirm : https://wiki.xxx.cn/x/2tGsEw to correct your committer email address
To git-biz.xxx.cn:news/test.git
! [remote rejected] develop -> develop (pre-receive hook declined)
error: failed to push some refs to 'git-biz.xxx.cn:news/test.git'
第一步,使用 git log
命令,查找提交记录
第二步,如图所示,你可以找到你想修改的那次记录的 commit id
第三步,使用 git reset –soft [版本号]
命令进入你的提交记录
第四步,使用 git commit --amend --author='用户名 <邮箱>'修改
第四步,修改完文件,退出 vim(一直按住esc ,再连续按大写的z)(可靠,就这样操作)
第五步:使用 git push 提交代码
参考:https://segmentfault.com/a/1190000019839609
点个赞,让更多技术人员快速解决问题。
微信搜:JavaPub
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。