]> git.phdru.name Git - dotfiles.git/commitdiff
.gitconfig: add lasttag and lasttagged aliases
authorOleg Broytman <phd@phdru.name>
Thu, 6 Oct 2016 10:49:04 +0000 (13:49 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 6 Oct 2016 10:49:04 +0000 (13:49 +0300)
.gitconfig

index f8d7c44b7e628e0d4f70515f72bd613d4cfa15b7..61b2d1398b9c4dc148eb3c396aea658cc30c5025 100644 (file)
   add-global-alias = "!exec git add-alias --global"
   add-local-alias = "!exec git add-alias --local"
 
+  # Last tag in the current branch
+  lasttag = describe --tags --abbrev=0
+
+  # Latest annotated tag in all branches
+  lasttagged = !git describe --tags `git rev-list --tags --max-count=1`
+
+  # List all tags
   tags = tag --list -n1
 
   # Find text in any commit ever