X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git.c;h=a6cfd1d8aaf13bf391c69c7f91b14fd68e0d36e9;hb=b2934926dd7455de61577c1dfdf4c12d224e7ae0;hp=9e29ade2b4b7b92d6eb6a4ffad56db37642a3620;hpb=ba1d45051e050cbcf68ccccacea86a4b6ecde731;p=git.git diff --git a/git.c b/git.c index 9e29ade2..a6cfd1d8 100644 --- a/git.c +++ b/git.c @@ -330,8 +330,10 @@ static int cmd_log_wc(int argc, const char **argv, char **envp, pretty_print_commit(rev->commit_format, commit, ~0, buf, LOGSIZE, rev->abbrev); printf("%s\n", buf); - if (rev->diff) + if (rev->diff) { + printf("---\n"); log_tree_commit(rev, commit); + } shown = 1; free(commit->buffer); commit->buffer = NULL; @@ -398,6 +400,12 @@ static void handle_internal_command(int argc, const char **argv, char **envp) }; int i; + /* Turn "git cmd --help" into "git help cmd" */ + if (argc > 1 && !strcmp(argv[1], "--help")) { + argv[1] = argv[0]; + argv[0] = cmd = "help"; + } + for (i = 0; i < ARRAY_SIZE(commands); i++) { struct cmd_struct *p = commands+i; if (strcmp(p->cmd, cmd))