diff options
author | Jeff King <peff@peff.net> | 2012-03-26 19:51:01 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-03-26 21:32:43 -0700 |
commit | f9a482e62b079cdf9e80889011b6f41f3c17f0c2 (patch) | |
tree | 630f0ab7c658f53a0c72e9dfed39ebcdd1043cf7 /builtin | |
parent | 8ced9c90a28f6abc80dc5ad4cf7921c2322c0bb0 (diff) | |
download | git-f9a482e62b079cdf9e80889011b6f41f3c17f0c2.tar.gz git-f9a482e62b079cdf9e80889011b6f41f3c17f0c2.tar.xz |
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 <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/branch.c | 2 | ||||
-rw-r--r-- | builtin/checkout.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/builtin/branch.c b/builtin/branch.c index d8cccf725..f1eaf1e41 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -808,7 +808,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix) if (kinds != REF_LOCAL_BRANCH) die(_("-a and -r options to 'git branch' do not make sense with a branch name")); create_branch(head, argv[0], (argc == 2) ? argv[1] : head, - force_create, reflog, 0, track); + force_create, reflog, 0, 0, track); } else usage_with_options(builtin_branch_usage, options); 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); |