ソースを参照

~/.gitconfig: Sort recent tags by author date

Lu Stadler 7 年 前
コミット
2e98c7e34e
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      .gitconfig

+ 1 - 1
.gitconfig

@ -12,7 +12,7 @@
12 12
	lol = log --pretty=oneline --abbrev-commit --graph --decorate
13 13
	ba = branch -a
14 14
	praise = blame
15
	recent-tags = ! sh -c 'git tag --sort=-version:refname | head -n5'
15
	recent-tags = ! sh -c 'git tag --sort=-authordate | head -n5'
16 16
[format]
17 17
	pretty = %C(magenta)%h%Creset %Cgreen[%cr]%Creset (%an) %s
18 18
[color]