##// END OF EJS Templates
unshelve: correct help string; unshelve does not accept file list...
Kyle Lippincott -
r43817:e0dcfdd1 default draft
parent child Browse files
Show More
@@ -7525,7 +7525,7 b' def unbundle(ui, repo, fname1, *fnames, '
7525 7525 _(b'DATE'),
7526 7526 ),
7527 7527 ],
7528 _(b'hg unshelve [OPTION]... [FILE]... [-n SHELVED]'),
7528 _(b'hg unshelve [OPTION]... [[-n] SHELVED]'),
7529 7529 helpcategory=command.CATEGORY_WORKING_DIRECTORY,
7530 7530 )
7531 7531 def unshelve(ui, repo, *shelved, **opts):
@@ -7549,9 +7549,9 b' def unshelve(ui, repo, *shelved, **opts)'
7549 7549 that causes a conflict. This reverts the unshelved changes, and
7550 7550 leaves the bundle in place.)
7551 7551
7552 If bare shelved change (when no files are specified, without interactive,
7553 include and exclude option) was done on newly created branch it would
7554 restore branch information to the working directory.
7552 If bare shelved change (without interactive, include and exclude
7553 option) was done on newly created branch it would restore branch
7554 information to the working directory.
7555 7555
7556 7556 After a successful unshelve, the shelved changes are stored in a
7557 7557 backup directory. Only the N most recent backups are kept. N
General Comments 0
You need to be logged in to leave comments. Login now