Commit now obeys --quiet more. Cherry-pick and revert call commit as --quiet. Prevents us from displaying working-tree status once or even twice. --- builtin-commit.c | 4 +++- builtin-revert.c | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/builtin-commit.c b/builtin-commit.c index 73f1e35..96ace77 100644 --- a/builtin-commit.c +++ b/builtin-commit.c @@ -759,7 +759,9 @@ int cmd_commit(int argc, const char **argv, const char *prefix) if (!prepare_log_message(index_file, prefix) && !in_merge && !allow_empty && !(amend && is_a_merge(head_sha1))) { - run_status(stdout, index_file, prefix, 0); + fprintf(stderr, "There are no changes, not committing.\n"); + if (!quiet) + run_status(stdout, index_file, prefix, 0); rollback_index_files(); unlink(commit_editmsg); return 1; diff --git a/builtin-revert.c b/builtin-revert.c index 4bf8eb2..b925358 100644 --- a/builtin-revert.c +++ b/builtin-revert.c @@ -392,9 +392,11 @@ static int revert_or_cherry_pick(int argc, const char **argv) if (!no_commit) { if (edit) - return execl_git_cmd("commit", "-n", NULL); + return execl_git_cmd("commit", "--quiet", + "-n", NULL); else - return execl_git_cmd("commit", "-n", "-F", defmsg, NULL); + return execl_git_cmd("commit", "--quiet", + "-n", "-F", defmsg, NULL); } if (reencoded_message) free(reencoded_message); -- 1.5.4.rc2.39.g00d2 - 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