##// END OF EJS Templates
amend: abort early if no username is configured with evolve enabled (issue4211)...
Matt Harbison -
r23101:b564330d stable
parent child Browse files
Show More
@@ -2121,6 +2121,11 b' def commit(ui, repo, commitfunc, pats, o'
2121 scmutil.match(repo[None], pats, opts), opts)
2121 scmutil.match(repo[None], pats, opts), opts)
2122
2122
2123 def amend(ui, repo, commitfunc, old, extra, pats, opts):
2123 def amend(ui, repo, commitfunc, old, extra, pats, opts):
2124 # amend will reuse the existing user if not specified, but the obsolete
2125 # marker creation requires that the current user's name is specified.
2126 if obsolete._enabled:
2127 ui.username() # raise exception if username not set
2128
2124 ui.note(_('amending changeset %s\n') % old)
2129 ui.note(_('amending changeset %s\n') % old)
2125 base = old.p1()
2130 base = old.p1()
2126
2131
General Comments 0
You need to be logged in to leave comments. Login now