Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 2493:9c660e691e90
print message after backout that tells that backout adds new head.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Fri, 23 Jun 2006 17:33:10 -0700 |
parents | 818ebebc4554 |
children | 73ac95671788 |
line wrap: on
line diff
--- a/mercurial/commands.py Fri Jun 23 17:21:04 2006 -0700 +++ b/mercurial/commands.py Fri Jun 23 17:33:10 2006 -0700 @@ -836,9 +836,14 @@ return '%d:%s' % (repo.changelog.rev(node), short(node)) ui.status(_('changeset %s backs out changeset %s\n') % (nice(repo.changelog.tip()), nice(node))) - if opts['merge'] and op1 != node: - ui.status(_('merging with changeset %s\n') % nice(op1)) - doupdate(ui, repo, hex(op1), **opts) + if op1 != node: + if opts['merge']: + ui.status(_('merging with changeset %s\n') % nice(op1)) + doupdate(ui, repo, hex(op1), **opts) + else: + ui.status(_('the backout changeset is a new head - ' + 'do not forget to merge\n')) + ui.status(_('(use "backout -m" if you want to auto-merge)\n')) def bundle(ui, repo, fname, dest="default-push", **opts): """create a changegroup file