diff options
Diffstat (limited to '.config/git/config')
-rw-r--r-- | .config/git/config | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.config/git/config b/.config/git/config index 47d6b7c..d729298 100644 --- a/.config/git/config +++ b/.config/git/config @@ -99,8 +99,11 @@ # }}} # various useful {{{ # last tag created - lasttag = describe --tags --abbrev=0 - lt = describe --tags --abbrev=0 + lasttag = "describe --tags --abbrev=0" + lt = "describe --tags --abbrev=0" + + # tag logs + taglog = "log --tags --simplify-by-decoration --pretty='format:%ci %d'" # conflict/merges ours = "!f() { git co --ours $@ && git add $@; }; f" |