diff options
author | Hendrik Jäger <hendrik@securosys.ch> | 2018-03-06 15:17:32 +0100 |
---|---|---|
committer | Hendrik Jäger <hendrik@securosys.ch> | 2018-03-06 15:17:32 +0100 |
commit | f9993c206af1d69414aef3e22ed7b2128ac4e110 (patch) | |
tree | 0909f23438f5f3b01e8de5d81309daadb9deb429 /.config | |
parent | d98ecabf186d5eaf9f521b33b942ff8eb2f0d87b (diff) |
Add tag aliases
Diffstat (limited to '.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" |