gpt4 book ai didi

git filter 分支到 git filter repo 的转换

转载 作者:行者123 更新时间:2023-12-04 04:08:34 26 4
gpt4 key购买 nike

我正在按照此命令对我的 git 存储库中的所有提交执行更漂亮的操作:

git filter-branch --tree-filter 'prettier --write "**/**.js" || echo “Error formatting, possibly invalid JS“' -- --all

我想在 git filter repo 中执行相同的操作但我什至不确定这是否可以实现。任何人都可以帮助解决如何使用 git filter repo 解决这个问题吗?

最佳答案

I want to perform the same in git filter repo but I am not even sure whether that is achievable



是的,它是 blob callback并允许您在所述 blob 上调用您想要的任何脚本/命令,类似于 newren/git-filter-repo issue 45 中所做的, 和 this example
git filter-repo --force --blob-callback '
import black
blob.data = black.reformat_commit(blob.data.decode(), mode=black.FileMode()).encode()
'

reformat_commit as in this python script .

关于git filter 分支到 git filter repo 的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62123172/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com