Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有两个存储库,1. 源存储库 2. 目标存储库 当源存储库中出现提交时,我需要更改作者姓名和作者电子邮件,然后推送到目标存储库。
我已经尝试了这个链接的解决方案, 但它似乎改变了所有的提交。我只需要更改最新的。
在目标存储库中,我需要更改作者姓名和电子邮件的提交。在特定的提交引用之后。
您链接的filter-branch页面上应该可以正常工作,您需要做的就是指定一系列提交,请参阅在一系列提交上运行过滤器分支
filter-branch
git filter-branch --env-filter '...' SHA1..HEAD