From patchwork Tue Apr 14 18:31:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: subrepo: add include/exclude support for diffing git subrepos From: =?utf-8?q?Mathias_De_Mar=C3=A9?= X-Patchwork-Id: 8657 Message-Id: To: mercurial-devel@selenic.com Date: Tue, 14 Apr 2015 13:31:11 -0500 # HG changeset patch # User Mathias De Maré # Date 1429034996 -7200 # Tue Apr 14 20:09:56 2015 +0200 # Node ID dadecab56ef1982b56cf1bb25c14a8133634c0bc # Parent c560d8c687916cb70a6d54c2c9ddcb5c9e457be2 subrepo: add include/exclude support for diffing git subrepos Previously, git subrepos were ignored if any type of path selection was done. This can be solved by using subrepo status and filtering matching files. diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -1779,17 +1779,15 @@ if node2: cmd.append(node2) - if match.anypats(): - return #No support for include/exclude yet - output = "" if match.always(): output += self._gitcommand(cmd) + '\n' - elif match.files(): - for f in match.files(): - output += self._gitcommand(cmd + [f]) + '\n' - elif match(gitprefix): #Subrepo is matched - output += self._gitcommand(cmd) + '\n' + else: + st = self.status(node2)[:3] + files = [f for sublist in st for f in sublist] + for f in files: + if match(f): + output += self._gitcommand(cmd + ['--', f]) + '\n' if output.strip(): ui.write(output) diff --git a/tests/test-subrepo-git.t b/tests/test-subrepo-git.t --- a/tests/test-subrepo-git.t +++ b/tests/test-subrepo-git.t @@ -785,9 +785,57 @@ \s*foobar |\s*2 +- (re) 2 files changed, 2 insertions\(\+\), 1 deletions?\(-\) (re) -ensure adding include/exclude ignores the subrepo +adding an include should ignore the other elements $ hg diff --subrepos -I s/foobar + diff --git a/s/foobar b/s/foobar + index 8a5a5e2..bd5812a 100644 + --- a/s/foobar + +++ b/s/foobar + @@ -1,4 +1,4 @@ + -woopwoop + +woop woop + + foo + bar + +adding an exclude should ignore this element $ hg diff --subrepos -X s/foobar + diff --git a/s/barfoo b/s/barfoo + new file mode 100644 + index 0000000..257cc56 + --- /dev/null + +++ b/s/barfoo + @@ -0,0 +1 @@ + +foo + +moving a file should show a removal and an add + $ hg revert --all + reverting subrepo ../gitroot + $ cd s + $ git mv foobar woop + $ cd .. + $ hg diff --subrepos + diff --git a/s/foobar b/s/foobar + deleted file mode 100644 + index 8a5a5e2..0000000 + --- a/s/foobar + +++ /dev/null + @@ -1,4 +0,0 @@ + -woopwoop + - + -foo + -bar + diff --git a/s/woop b/s/woop + new file mode 100644 + index 0000000..8a5a5e2 + --- /dev/null + +++ b/s/woop + @@ -0,0 +1,4 @@ + +woopwoop + + + +foo + +bar + $ rm s/woop revert the subrepository $ hg revert --all