我已经在 git 存储库上工作了一段时间并做了一些提交。我一直在我的 php 文件中使用文档块,包括我的私人电子邮件地址,如下所示:
/**
* Bla bla bla.
*
* @author: Nic <foo@bar.com>
*/
现在我创建了一个新的电子邮件地址并更新了文档块,用新地址替换了旧地址。但是这种更改仅适用于我更改文档之后的提交。
如何从 git 的历史记录中完全删除旧的电子邮件地址并用新地址替换所有实例?
我曾尝试使用此博客文章使用 git filter-branch但没有成功。我得到以下结果:
git filter-branch --tree-filter 'git ls-files -z "*.php" |xargs -0 perl -p -i -e "s#old-email@example.com#new-email@foobar.com#g"' -- --all
Usage: git core\git-filter-branch [--env-filter <command>] [--tree-filter <command>]
[--index-filter <command>] [--parent-filter <command>]
[--msg-filter <command>] [--commit-filter <command>]
[--tag-name-filter <command>] [--subdirectory-filter <directory>]
[--original <namespace>] [-d <directory>] [-f | --force]
[<rev-list options>...]
会不会是电子邮件地址的特殊字符(@ 和 .)弄乱了正则表达式?除此之外,我不知道出了什么问题,任何帮助表示赞赏!