有没有更好的方法来更新bzr中的提交者电子邮件地址?使用fastimport插件,我可以做类似的事情:
bzr fast-export --no-plain ./trunk/ trunk.fi
cat trunk.fi | bzr fast-import-filter--user-map=names.txt > trunk_clean.fi
bzr init fixed
bzr fast-import trunk_clean.fi ./fixed
我对此方法感到担忧的是,我担心我的分支机构无法与过滤后的中继线正确关联。因此,有更好的方法来更新提交者电子邮件地址吗?如果我需要使用fastimport,有没有办法这样做,我所关心的所有分支在历史中仍然相互关联?
答案 0 :(得分:0)
像这样使用whoami
:
bzr whoami "Firstname Lastname <email.address@example.com>"
电子邮件地址也可以通过配置文件中的分支设置:
vi $HOME/.bazaar/branches.conf
[/some/branch/location]
email=Your Name <name@other-isp.com>
<强>参考强>