0

如何为我的 git 子模块中的所有先前提交重命名一个短语?

phrase1 to phrase2

我的短语位于 .pack 文件中。(我缩短了十六进制 .pack 名称):

$ grep -rnw . -e 'phrase1'
Binary file ./.git/modules/folder1/objects/pack/pack-6170d.pack matches
Binary file ./.git/modules/folder2/modules/objects/pack/pack-934ef.pack matches
Binary file ./.git/modules/folder2/objects/1b/2eeaa matches
Binary file ./.git/modules/folder2/objects/1e/92b8b matches
Binary file ./.git/objects/54/fcce26 matches

我尝试在 repo 上运行 BFG,但我得到了这个输出:

java -jar bfg-1.13.0.jar -rt expression_file.txt /my_repo/
...
BFG aborting: No refs to update - no dirty commits found??
...

我尝试使用“--no-blob-protection”参数运行 BFG,但得到相同的输出:

...
BFG aborting: No refs to update - no dirty commits found??
...

我的 expression_file.txt 具有以下格式:

phrase1 ==> phrase2

我研究过使用“git filter branch”,但我不确定给它什么命令来让它重写这些文件。

4

1 回答 1

1

只是为了回答问题的git filter-branch一部分。以下是如何使用它来替换phrase1所有phrase2文件.txt

git filter-branch -f --tree-filter '
    find . -type f -name '*.txt' -exec sed -i 's/phrase1/phrase2/g' {} +
' --prune-empty --all

请注意,这可能非常耗时。该--all选项将在所有分支中执行替换。

于 2018-11-13T07:11:34.670 回答