LoginSignup
3
3

More than 5 years have passed since last update.

[Git] リモート上のタグが指しているコミットIDを表示する

Posted at

リモート上のタグの指しているコミットIDは、git ls-remote コマンドで確認できます。

git ls-remote --tags origin mytag^{}

originというリモートリポジトリにmytagというタグがプッシュされている前提です。
タグの末尾に ^{} を付ける必要があるので注意。

実行結果は以下のとおり。

$ git ls-remote --tags origin mytag^{}
$ <コミットのハッシュ>                       refs/tags/mytag^{}
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3