我有以下脚本在 Git 的提交后挂钩上运行:
#!/bin/sh
# by Martin Seeler, and
# by Jorge Javier Araya Navarro
# destination of the final changelog file
OUTPUT_FILE=CHANGELOG.md
# generate the changelog
if ! type gitchangelog > /dev/null; then
echo "ERROR: Please install gitchangelog"
exit 1
fi
gitchangelog > $OUTPUT_FILE
# prevent recursion!
# since a 'commit --amend' will trigger the post-commit script again
# we have to check if the changelog file has changed or not
res=$(git status --porcelain | grep $OUTPUT_FILE | wc -l)
if [ "$res" -gt 0 ]; then
git add $OUTPUT_FILE
git commit --amend --no-edit
echo "Populated Changelog in $OUTPUT_FILE"
fi
这对于使用 gitchangelog 生成 CHANGELOG 文件很方便,而无需创建新的提交来注册该文件上的更改。
但是,如果我在 HEAD 上有一个标签,在commit --amend
运行后标签是“丢失”,因此我必须在本地和远程删除它并重新创建它,这很烦人。
我试图想办法让脚本在修改后移动标签,但此时我不确定我在做什么。我应该首先列出 HEAD 上的标签吗?修改后可以移动标签吗?Git 会知道我的意思吗?