gpt4 book ai didi

git - 在预提交 Hook 期间再次暂存文件?

转载 作者:太空狗 更新时间:2023-10-29 13:55:23 24 4
gpt4 key购买 nike

我已经在预提交 Hook 中安装了 mvn java-formatter:format 任务。此任务将格式化 java 源代码。

pushd src/ > /dev/null

mvn java-formatter:format
RETVAL=$?
if (($RETVAL == 1)); then
exit 1
fi

popd > /dev/null

我需要附加新格式化的源文件来提交。我该怎么做?

最佳答案

pre-commit hook应该能够包含一个 git add,以修改即将提交的索引。

参见示例“git pre-commit hook, add file into index”。

尝试 git add -A :/.(参见“Add as if from the root folder of the repository”)

如果您只需要添加已经暂存的文件,那么您需要:

关于git - 在预提交 Hook 期间再次暂存文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31532143/

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