From f9a482e62b079cdf9e80889011b6f41f3c17f0c2 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Mon, 26 Mar 2012 19:51:01 -0400 Subject: checkout: suppress tracking message with "-q" Like the "switched to..." message (which is already suppressed by "-q"), this message is purely informational. Let's silence it if the user asked us to be quiet. This patch is slightly more than a one-liner, because we have to teach create_branch to propagate the flag all the way down to install_branch_config. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- builtin/checkout.c | 1 + 1 file changed, 1 insertion(+) (limited to 'builtin/checkout.c') diff --git a/builtin/checkout.c b/builtin/checkout.c index a76aa2a6f..48f8b430f 100644 --- a/builtin/checkout.c +++ b/builtin/checkout.c @@ -557,6 +557,7 @@ static void update_refs_for_switch(struct checkout_opts *opts, opts->new_branch_force ? 1 : 0, opts->new_branch_log, opts->new_branch_force ? 1 : 0, + opts->quiet, opts->track); new->name = opts->new_branch; setup_branch_path(new); -- cgit v1.2.1