Mercurial > public > mercurial-scm > hg
diff mercurial/cmdutil.py @ 15231:cd6f10dccf16
cmdutil.bailifchanged: abort for dirty subrepos
author | Eric Roshan Eisner <ede@alum.mit.edu> |
---|---|
date | Tue, 11 Oct 2011 18:18:15 -0700 |
parents | 231aac5280ba |
children | 9e99d2bbb1b1 195dbd1cef0c |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Tue Oct 11 21:10:03 2011 -0400 +++ b/mercurial/cmdutil.py Tue Oct 11 18:18:15 2011 -0700 @@ -75,6 +75,10 @@ modified, added, removed, deleted = repo.status()[:4] if modified or added or removed or deleted: raise util.Abort(_("outstanding uncommitted changes")) + ctx = repo[None] + for s in ctx.substate: + if ctx.sub(s).dirty(): + raise util.Abort(_("uncommitted changes in subrepo %s") % s) def logmessage(ui, opts): """ get the log message according to -m and -l option """