From patchwork Sat Aug 17 00:21:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1, of, 2] mq: look for modified subrepos when checking for local changes From: Angel Ezquerra X-Patchwork-Id: 2197 Message-Id: <8d70ca4d1804ca496ecf.1376698870@Angel-PC.localdomain> To: mercurial-devel@selenic.com Date: Sat, 17 Aug 2013 02:21:10 +0200 # HG changeset patch # User Angel Ezquerra # Date 1375742979 -7200 # Tue Aug 06 00:49:39 2013 +0200 # Node ID 8d70ca4d1804ca496ecf5f19fc7987b54f2de1ba # Parent f959b60e3025547f1ba32e80613783baf61e63d9 mq: look for modified subrepos when checking for local changes It was possible to apply, unapply, fold, patches (etc) with modified subrepos, which resulted in surprising behavior. For example it was easy to apply a patch with a modified subrepo, and then the refresh it and accidentally end up including the modified subrepo on the refreshed patch. A test has been added to verify this new check. # HG changeset patch # User Angel Ezquerra # Date 1375742979 -7200 # Tue Aug 06 00:49:39 2013 +0200 # Node ID 8d70ca4d1804ca496ecf5f19fc7987b54f2de1ba # Parent f959b60e3025547f1ba32e80613783baf61e63d9 mq: look for modified subrepos when checking for local changes It was possible to apply, unapply, fold, patches (etc) with modified subrepos, which resulted in surprising behavior. For example it was easy to apply a patch with a modified subrepo, and then the refresh it and accidentally end up including the modified subrepo on the refreshed patch. A test has been added to verify this new check. diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -975,11 +975,20 @@ else: raise util.Abort(_("local changes found")) + def localchangedsubreposfound(self, refresh=True): + if refresh: + raise util.Abort(_("local changed subrepos found, refresh first")) + else: + raise util.Abort(_("local changed subrepos found")) + def checklocalchanges(self, repo, force=False, refresh=True): cmdutil.checkunfinished(repo) m, a, r, d = repo.status()[:4] - if (m or a or r or d) and not force: - self.localchangesfound(refresh) + if not force: + if (m or a or r or d): + self.localchangesfound(refresh) + if self.checksubstate(repo): + self.localchangedsubreposfound(refresh) return m, a, r, d _reserved = ('series', 'status', 'guards', '.', '..') diff --git a/tests/test-mq-subrepo.t b/tests/test-mq-subrepo.t --- a/tests/test-mq-subrepo.t +++ b/tests/test-mq-subrepo.t @@ -213,6 +213,7 @@ handle subrepos safely on qpush/qpop +(and we cannot qpop / qpush with a modified subrepo) $ mkrepo repo-2499-qpush $ mksubrepo sub @@ -220,31 +221,57 @@ $ hg -R sub ci -m0sub $ echo sub = sub > .hgsub $ hg add .hgsub - $ hg qnew -m0 0.diff + $ hg commit -m0 + $ hg debugsub + path sub + source sub + revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 + $ echo foo > ./sub/a + $ hg -R sub commit -m foo + $ hg commit -m1 + $ hg qimport -r "0:tip" + +qpop + $ hg -R sub update 0000 + 0 files updated, 0 files merged, 1 files removed, 0 files unresolved + $ hg qpop + abort: local changed subrepos found, refresh first + [255] + $ hg revert sub + reverting subrepo sub + adding sub/a + $ hg qpop + popping 1.diff + now at: 0.diff + $ hg status -AS + M sub/a + C .hgsub + C .hgsubstate $ hg debugsub path sub source sub revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 -qpop - $ hg qpop - popping 0.diff - patch queue now empty +qpush + $ hg -R sub update 0000 + 0 files updated, 0 files merged, 1 files removed, 0 files unresolved + $ hg qpush + abort: local changed subrepos found, refresh first + [255] + $ hg revert sub + reverting subrepo sub + adding sub/a + $ hg qpush + applying 1.diff + now at: 1.diff $ hg status -AS - $ hg debugsub - -qpush - $ hg qpush - applying 0.diff - now at: 0.diff - $ hg status -AS + M .hgsubstate C .hgsub - C .hgsubstate C sub/a $ hg debugsub path sub source sub - revision b2fdb12cd82b021c3b7053d67802e77b6eeaee31 + revision aa037b301eba54f350c75951b5486727fb98cbb5 $ cd ..