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 commit SHA で git タグを取得するにはどうすればよいですか?
--containsパラメータを使用します。
例:シェルからSHA abcd1234にあるタグを確認するには:
git tag --contains abcd1234
タグの名前を返す
v1.1
その特定のコミットに複数のタグがある場合は、改行で区切られて返されます。
v1.1 LATEST_STABLE MY-TAG
これを bash スクリプト経由で環境変数に設定するには:
export GIT_TAG=`git tag --contains $MY_SHA`