Mercurial > public > mercurial-scm > hg
diff hgext/share.py @ 24364:135b23868f45
commands: replace "working copy" with "working directory" in help/messages
"working directory" is the standard term, we should use it consistently.
But I didn't touch the hint, "run 'hg update' to get a working copy", because
"get a working directory" sounds a bit odd.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Tue, 17 Mar 2015 22:47:08 +0900 |
parents | 7e71898a7cdc |
children | 80c5b2666a96 |
line wrap: on
line diff
--- a/hgext/share.py Tue Mar 17 22:21:09 2015 -0400 +++ b/hgext/share.py Tue Mar 17 22:47:08 2015 +0900 @@ -15,7 +15,7 @@ testedwith = 'internal' @command('share', - [('U', 'noupdate', None, _('do not create a working copy')), + [('U', 'noupdate', None, _('do not create a working directory')), ('B', 'bookmarks', None, _('also share bookmarks'))], _('[-U] [-B] SOURCE [DEST]'), norepo=True)