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 tag -a -f yourTag
しかし、それはつまり
git push origin :refs/tag/yourTag # delete it on the remote # if you already pushed it git push origin master --tags