创建 Git 标签时自动运行 Git hook

发布于 2024-10-04 21:56:00 字数 74 浏览 2 评论 0原文

是否有一个 Git 钩子可以在添加新的 Git 标签时执行?因为我想自动将新的 Git 标签名称写入文本文件。您知道如何执行此操作吗?

Is there a Git hook which can be executed when a new Git tag is added? Because I want to automatically write new Git tag names into a textfile. Do you have a clue on how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寻找我们的幸福 2024-10-11 21:56:00

虽然目前无法使用挂钩,但您始终可以创建一个简单的脚本。

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

While it's not currently possible using hooks, you can always create a simple script.

mytag.sh :

#!/bin/sh
[ -z "$1" ] || ( git tag $1 && git tag > /path/to/your-tags-file )

then :

chmod +x mytag.sh
git config alias.mytag !/path/to/mytag.sh
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文