# HG changeset patch # User Oleksandr Gavenko # Date 1429568132 -10800 # Node ID eed8cfffa44ee6e526ed156aa6491a43aeb157d5 # Parent f948320f5bf3cfcf13e24be8fb427c9d31f9ebcc List tags with dates. diff -r f948320f5bf3 -r eed8cfffa44e git.rst --- a/git.rst Sun Apr 19 18:39:09 2015 +0300 +++ b/git.rst Tue Apr 21 01:15:32 2015 +0300 @@ -217,6 +217,19 @@ $ git describe $REV +List tags with dates. +===================== +:: + + $ git log --tags --simplify-by-decoration --pretty="format:%ci %d" + +Update to date. +=============== +:: + + $ git checkout 'master@{1979-02-26}' + $ git checkout 'master@{1979-02-26 18:30:00}' + Using git to work with SVN offline. ===================================