Migrate 'is_submodule_modified' to the new porcelain format of
git-status. This conversion attempts to convert faithfully, i.e.
the behavior ought to be exactly the same.

As the output in the parsing only distinguishes between untracked files
and the rest, this is easy to port to the new format, as we only
need to identify untracked files and the rest is handled in the "else"
case.

untracked files are indicated by only a single question mark instead of
two question marks, so the conversion is easy.

Signed-off-by: Stefan Beller <sbel...@google.com>
---
 submodule.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/submodule.c b/submodule.c
index f01e84faff..da1db90dda 100644
--- a/submodule.c
+++ b/submodule.c
@@ -1068,10 +1068,11 @@ unsigned is_submodule_modified(const char *path, int 
ignore_untracked)
        cp.out = -1;
        cp.dir = path;
        if (start_command(&cp))
-               die("Could not run 'git status --porcelain' in submodule %s", 
path);
+               die("Could not run 'git status --porcelain=2' in submodule %s", 
path);
 
        while (strbuf_getwholeline_fd(&buf, cp.out, '\n') != EOF) {
-               if ((buf.buf[0] == '?') && (buf.buf[1] == '?')) {
+               /* regular untracked files */
+               if (buf.buf[0] == '?') {
                        dirty_submodule |= DIRTY_SUBMODULE_UNTRACKED;
                        if (dirty_submodule & DIRTY_SUBMODULE_MODIFIED)
                                break;
@@ -1085,7 +1086,7 @@ unsigned is_submodule_modified(const char *path, int 
ignore_untracked)
        close(cp.out);
 
        if (finish_command(&cp))
-               die("'git status --porcelain' failed in submodule %s", path);
+               die("'git status --porcelain=2' failed in submodule %s", path);
 
        strbuf_release(&buf);
        return dirty_submodule;
-- 
2.12.1.438.gb674c4c09c

Reply via email to