内容简介:To change the name and/or email address recorded in existing commits, you must rewrite the entire history of your Git repository.Warning: This action is destructive to your repository's history. If you're collaborating on a repository with others, it's co
To change the name and/or email address recorded in existing commits, you must rewrite the entire history of your Git repository.
Warning: This action is destructive to your repository's history. If you're collaborating on a repository with others, it's considered bad practice to rewrite published history. You should only do this in an emergency.
Changing the Git history of your repository using a script
We've created a script that will change any commits that previously had the old email address in its author or committer fields to use the correct name and email address.
Note: Running this script rewrites history for all repository collaborators. After completing these steps, any person with forks or clones must fetch the rewritten history and rebase any local changes into the rewritten history.
Before running this script, you'll need:
- The old email address that appears in the author/committer fields that you want to change
-
The correct name and email address that you would like such commits to be attributed to
-
Open Terminal Terminal Git Bash .
-
Create a fresh, bare clone of your repository:
git clone --bare https://github.com/<em>user</em>/<em>repo</em>.git cd <em>repo</em>.git
-
Copy and paste the script, replacing the following variables based on the information you gathered:
-
OLD_EMAIL
-
CORRECT_NAME
-
CORRECT_EMAIL
-
- Press Enter to run the script.
- Review the new Git history for errors.
-
Push the corrected history to GitHub:
git push --force --tags origin 'refs/heads/*'
-
Clean up the temporary clone:
cd .. rm -rf <em>repo</em>.git
以上所述就是小编给大家介绍的《修改Git已提交的的Author和EMail(批量修改脚本)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 不修改模板的前提下修改VisualState中的某些值
- ViewGroup 默认顺序绘制子 View,如何修改?什么场景需要修改绘制顺序?
- Per.js 史上最大修改版本,2.1 版本更新,修改 5 项功能
- 通过修改环境变量修改当前进程使用的系统 Temp 文件夹的路径
- Linux下修改时区
- 修改git历史
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
个体与交互
Ken Howard、Barry Rogers / 贾永娜、张凯峰 / 机械工业出版社华章公司 / 2012-3-20 / 45.00元
对敏捷软件开发的关注重点,通常都集中在“机制”方面,即过程和工具。“敏捷宣言”认为,个体与交互的价值要高于过程和工具,但这一点很容易被遗忘。在敏捷开发中,如果你重新将注意力放在人的方面,将会收获巨大利益。 本书展示了如何解决敏捷团队在实际项目中遭遇的问题。同时,本书也是很有实用价值的敏捷用户指南,其中包含的故事、最佳实践方法、经验以及技巧均可应用到实际项目当中。通过逐步实践,你将学会如何让团......一起来看看 《个体与交互》 这本书的介绍吧!