# HG changeset patch # User Oleksandr Gavenko # Date 1449913927 -7200 # Node ID 49fb4309d4d05bedc9d86014805fd2fbe85ba1a0 # Parent 5cdc89c9d0aebf81db6b65304a0b10bee87689b6 Find most recent tag for revision. diff -r 5cdc89c9d0ae -r 49fb4309d4d0 git.rst --- a/git.rst Sat Dec 12 00:22:04 2015 +0200 +++ b/git.rst Sat Dec 12 11:52:07 2015 +0200 @@ -223,6 +223,12 @@ $ git describe $REV +Many projects set tags on branches rather then mainline (for example JS/CSS +projects perform build and commit binary/minified files, which unnecessary for +mainline history). In this case review simplifiied history by:: + + $ git log --graph --all --decorate --oneline --simplify-by-decoration + List tags with dates. ===================== ::