标签: git
git describe检索最新的可访问标记。
git describe
git tag --list检索所有标记。
git tag --list
我需要接近git描述的内容,但要检索 N个最新标记,N = 1,2,3 ... 可达,已排序按创作日期。
答案 0 :(得分:0)
试试这个:
git tag --sort=-creatordate | tail -n <N>
或以相反的顺序:
git tag --sort=creatordate | tail -n <N>