ref_iterator_begin_fn(): fix docstring
[gitweb.git] / builtin / commit.c
index 6adc908b327ae6514af873426ef5ed1e589f0446..1d191a49f8499bc98c008f32ddef8f12f2cf7dda 100644 (file)
@@ -1263,6 +1263,10 @@ static int parse_status_slot(const char *slot)
                return WT_STATUS_NOBRANCH;
        if (!strcasecmp(slot, "unmerged"))
                return WT_STATUS_UNMERGED;
+       if (!strcasecmp(slot, "localBranch"))
+               return WT_STATUS_LOCAL_BRANCH;
+       if (!strcasecmp(slot, "remoteBranch"))
+               return WT_STATUS_REMOTE_BRANCH;
        return -1;
 }