run_diff_index() and the entire diff machinery is hard coded to output to stdout, so just redirect that and restore it when done. Signed-off-by: Kristian Høgsberg <krh@xxxxxxxxxx> --- builtin-commit.c | 24 +++++++++++++++++++++++- 1 files changed, 23 insertions(+), 1 deletions(-) diff --git a/builtin-commit.c b/builtin-commit.c index 446a252..d5b8479 100644 --- a/builtin-commit.c +++ b/builtin-commit.c @@ -277,6 +277,7 @@ static char *prepare_index(const char **files, const char *prefix) static int run_status(FILE *fp, const char *index_file, const char *prefix) { struct wt_status s; + int saved_stdout; wt_status_prepare(&s); s.prefix = prefix; @@ -290,8 +291,23 @@ static int run_status(FILE *fp, const char *index_file, const char *prefix) s.index_file = index_file; s.fp = fp; + fflush(fp); + + /* Sigh, the entire diff machinery is hardcoded to output to + * stdout. Do the dup-dance...*/ + saved_stdout = dup(STDOUT_FILENO); + if (saved_stdout < 0 || dup2(fileno(fp), STDOUT_FILENO) < 0) + die("couldn't redirect stdout\n"); + wt_status_print(&s); + fflush(fp); + fflush(stdout); + + if (dup2(saved_stdout, STDOUT_FILENO) < 0) + die("couldn't restore stdout\n"); + close(saved_stdout); + return s.commitable; } @@ -661,7 +677,7 @@ int cmd_commit(int argc, const char **argv, const char *prefix) int header_len; struct strbuf sb; const char *index_file, *reflog_msg; - char *nl; + char *nl, *p; unsigned char commit_sha1[20]; struct ref_lock *ref_lock; @@ -757,6 +773,12 @@ int cmd_commit(int argc, const char **argv, const char *prefix) rollback_index_files(); exit(1); } + + /* Truncate the message just before the diff, if any. */ + p = strstr(sb.buf, "\ndiff --git a/"); + if (p != NULL) + strbuf_setlen(&sb, p - sb.buf); + stripspace(&sb, 1); if (sb.len < header_len || message_is_empty(&sb, header_len)) { rollback_index_files(); -- 1.5.3.4.206.g58ba4 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html