Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
添加新的 Git 标签时是否可以执行 Git 钩子?因为我想自动将新的 Git 标记名称写入文本文件。你知道如何做到这一点吗?
虽然目前无法使用钩子,但您始终可以创建一个简单的脚本。
mytag.sh :
#!/bin/sh [ -z "$1" ] || ( git tag $1 && git tag > /path/to/your-tags-file )
然后 :
chmod +x mytag.sh git config alias.mytag !/path/to/mytag.sh