$ git log --no-walk --tags --date=format:'%Y-%m-%d' --pretty="%ad %d" --decorate=full
pretty-format一覧 Git - pretty-formats Documentation
--tags
refs/tagsの形式でタグだけを出す--no-walk
指定コミットだけ出す。--tags
との組み合わせでタグ一覧を出す。--decorate=full
refをフルネームで出す
$ git log --no-walk --tags --date=format:'%Y-%m-%d' --pretty="%ad %d" --decorate=full
pretty-format一覧 Git - pretty-formats Documentation
--tags
refs/tagsの形式でタグだけを出す--no-walk
指定コミットだけ出す。--tags
との組み合わせでタグ一覧を出す。--decorate=full
refをフルネームで出す