X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=rev-parse.c;h=610eacb35a2ebc5b64b48ae02367543fa2fbb67a;hb=d5dddccaa0c61c67340efca36237dfa06eccef1c;hp=b82f294a78994e512c4f30da5bb4ba3eca3f95b4;hpb=90768daaa006516c7ae69ed89d7c2e67243dfac1;p=git.git diff --git a/rev-parse.c b/rev-parse.c index b82f294a..610eacb3 100644 --- a/rev-parse.c +++ b/rev-parse.c @@ -43,11 +43,13 @@ static int is_rev_argument(const char *arg) "--min-age=", "--no-merges", "--objects", + "--objects-edge", "--parents", "--pretty", "--show-breaks", "--sparse", "--topo-order", + "--date-order", "--unpacked", NULL }; @@ -225,12 +227,12 @@ int main(int argc, char **argv) continue; } if (!strcmp(arg, "--short") || - !strncmp(arg, "--short=", 9)) { + !strncmp(arg, "--short=", 8)) { filter &= ~(DO_FLAGS|DO_NOREV); verify = 1; abbrev = DEFAULT_ABBREV; - if (arg[8] == '=') - abbrev = strtoul(arg + 9, NULL, 10); + if (arg[7] == '=') + abbrev = strtoul(arg + 8, NULL, 10); if (abbrev < MINIMUM_ABBREV) abbrev = MINIMUM_ABBREV; else if (40 <= abbrev)