【Git】最新のタグ名を取得する方法

  • Git
git describe --tags --abbrev=0
  • git describe … 現在のコミットからたどり着ける、最新の annotated(注釈付き) の tag を表示する。
  • --tags … lightweight / annotated の中から最新のタグを表示する。
  • --abbrev=0 … tag の後ろにユニークな文字列が付与されるが、0 を指定すると文字列を付与しない。

今回は lightweight(軽量版)の tag も含めて検索したかったので、--tagsをつけています。

参考

https://stackoverflow.com/questions/1404796/how-to-get-the-latest-tag-name-in-current-branch-in-git