Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 6182:07f2236c4dee
add a blame alias for annotate
The original cvs command was called blame. SVN has both, and other VC systems
typically also have this as an alias. Makes things easier for converts.
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Thu, 28 Feb 2008 19:08:04 +0100 |
parents | d98ef03893e6 |
children | 3b0c2b71e0d7 |
comparison
equal
deleted
inserted
replaced
6181:d500aeb8092e | 6182:07f2236c4dee |
---|---|
2773 (addremove, | 2773 (addremove, |
2774 [('s', 'similarity', '', | 2774 [('s', 'similarity', '', |
2775 _('guess renamed files by similarity (0<=s<=100)')), | 2775 _('guess renamed files by similarity (0<=s<=100)')), |
2776 ] + walkopts + dryrunopts, | 2776 ] + walkopts + dryrunopts, |
2777 _('hg addremove [OPTION]... [FILE]...')), | 2777 _('hg addremove [OPTION]... [FILE]...')), |
2778 "^annotate": | 2778 "^annotate|blame": |
2779 (annotate, | 2779 (annotate, |
2780 [('r', 'rev', '', _('annotate the specified revision')), | 2780 [('r', 'rev', '', _('annotate the specified revision')), |
2781 ('f', 'follow', None, _('follow file copies and renames')), | 2781 ('f', 'follow', None, _('follow file copies and renames')), |
2782 ('a', 'text', None, _('treat all files as text')), | 2782 ('a', 'text', None, _('treat all files as text')), |
2783 ('u', 'user', None, _('list the author (long with -v)')), | 2783 ('u', 'user', None, _('list the author (long with -v)')), |