##// END OF EJS Templates
resolve: consistently describe re-merge + unresolved
timeless@mozdev.org -
r26352:e635bc9b default
parent child Browse files
Show More
@@ -5459,7 +5459,7 b' def resolve(ui, repo, *pats, **opts):'
5459 raise util.Abort(_("can't specify --all and patterns"))
5459 raise util.Abort(_("can't specify --all and patterns"))
5460 if not (all or pats or show or mark or unmark):
5460 if not (all or pats or show or mark or unmark):
5461 raise util.Abort(_('no files or directories specified'),
5461 raise util.Abort(_('no files or directories specified'),
5462 hint=('use --all to remerge all files'))
5462 hint=('use --all to re-merge all unresolved files'))
5463
5463
5464 if show:
5464 if show:
5465 fm = ui.formatter('resolve', opts)
5465 fm = ui.formatter('resolve', opts)
@@ -77,7 +77,7 b' after resolve'
77 resolve all warning
77 resolve all warning
78 $ hg resolve
78 $ hg resolve
79 abort: no files or directories specified
79 abort: no files or directories specified
80 (use --all to remerge all files)
80 (use --all to re-merge all unresolved files)
81 [255]
81 [255]
82
82
83 resolve all
83 resolve all
@@ -129,7 +129,7 b' get back to conflicting state'
129 resolve without arguments should suggest --all
129 resolve without arguments should suggest --all
130 $ hg resolve
130 $ hg resolve
131 abort: no files or directories specified
131 abort: no files or directories specified
132 (use --all to remerge all files)
132 (use --all to re-merge all unresolved files)
133 [255]
133 [255]
134
134
135 resolve --all should re-merge all unresolved files
135 resolve --all should re-merge all unresolved files
General Comments 0
You need to be logged in to leave comments. Login now