Skip to content

Commit b3ba469

Browse files
committed
Merge branch 'jk/branch-quiet'
Even with "-q"uiet option, "checkout" used to report setting up tracking. Also "branch" learns "-q"uiet option to squelch informational message. By Jeff King * jk/branch-quiet: teach "git branch" a --quiet option checkout: suppress tracking message with "-q"
2 parents f84e8b6 + d65ddf1 commit b3ba469

File tree

5 files changed

+22
-11
lines changed

5 files changed

+22
-11
lines changed

Documentation/git-branch.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ OPTIONS
126126
relationship to upstream branch (if any). If given twice, print
127127
the name of the upstream branch, as well.
128128

129+
-q::
130+
--quiet::
131+
Be more quiet when creating or deleting a branch, suppressing
132+
non-error messages.
133+
129134
--abbrev=<length>::
130135
Alter the sha1's minimum display length in the output listing.
131136
The default value is 7 and can be overridden by the `core.abbrev`

branch.c

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,10 @@ void install_branch_config(int flag, const char *local, const char *origin, cons
101101
* config.
102102
*/
103103
static int setup_tracking(const char *new_ref, const char *orig_ref,
104-
enum branch_track track)
104+
enum branch_track track, int quiet)
105105
{
106106
struct tracking tracking;
107+
int config_flags = quiet ? 0 : BRANCH_CONFIG_VERBOSE;
107108

108109
if (strlen(new_ref) > 1024 - 7 - 7 - 1)
109110
return error("Tracking not set up: name too long: %s",
@@ -128,7 +129,7 @@ static int setup_tracking(const char *new_ref, const char *orig_ref,
128129
return error("Not tracking: ambiguous information for ref %s",
129130
orig_ref);
130131

131-
install_branch_config(BRANCH_CONFIG_VERBOSE, new_ref, tracking.remote,
132+
install_branch_config(config_flags, new_ref, tracking.remote,
132133
tracking.src ? tracking.src : orig_ref);
133134

134135
free(tracking.src);
@@ -191,7 +192,7 @@ int validate_new_branchname(const char *name, struct strbuf *ref,
191192
void create_branch(const char *head,
192193
const char *name, const char *start_name,
193194
int force, int reflog, int clobber_head,
194-
enum branch_track track)
195+
int quiet, enum branch_track track)
195196
{
196197
struct ref_lock *lock = NULL;
197198
struct commit *commit;
@@ -260,7 +261,7 @@ void create_branch(const char *head,
260261
start_name);
261262

262263
if (real_ref && track)
263-
setup_tracking(ref.buf+11, real_ref, track);
264+
setup_tracking(ref.buf+11, real_ref, track, quiet);
264265

265266
if (!dont_change_ref)
266267
if (write_ref_sha1(lock, sha1, msg) < 0)

branch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
void create_branch(const char *head, const char *name, const char *start_name,
1616
int force, int reflog,
17-
int clobber_head, enum branch_track track);
17+
int clobber_head, int quiet, enum branch_track track);
1818

1919
/*
2020
* Validates that the requested branch may be created, returning the

builtin/branch.c

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ static int branch_merged(int kind, const char *name,
146146
return merged;
147147
}
148148

149-
static int delete_branches(int argc, const char **argv, int force, int kinds)
149+
static int delete_branches(int argc, const char **argv, int force, int kinds,
150+
int quiet)
150151
{
151152
struct commit *rev, *head_rev = NULL;
152153
unsigned char sha1[20];
@@ -216,9 +217,10 @@ static int delete_branches(int argc, const char **argv, int force, int kinds)
216217
ret = 1;
217218
} else {
218219
struct strbuf buf = STRBUF_INIT;
219-
printf(_("Deleted %sbranch %s (was %s).\n"), remote,
220-
bname.buf,
221-
find_unique_abbrev(sha1, DEFAULT_ABBREV));
220+
if (!quiet)
221+
printf(_("Deleted %sbranch %s (was %s).\n"),
222+
remote, bname.buf,
223+
find_unique_abbrev(sha1, DEFAULT_ABBREV));
222224
strbuf_addf(&buf, "branch.%s", bname.buf);
223225
if (git_config_rename_section(buf.buf, NULL) < 0)
224226
warning(_("Update of config-file failed"));
@@ -678,6 +680,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
678680
int delete = 0, rename = 0, force_create = 0, list = 0;
679681
int verbose = 0, abbrev = -1, detached = 0;
680682
int reflog = 0, edit_description = 0;
683+
int quiet = 0;
681684
enum branch_track track;
682685
int kinds = REF_LOCAL_BRANCH;
683686
struct commit_list *with_commit = NULL;
@@ -686,6 +689,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
686689
OPT_GROUP("Generic options"),
687690
OPT__VERBOSE(&verbose,
688691
"show hash and subject, give twice for upstream branch"),
692+
OPT__QUIET(&quiet, "suppress informational messages"),
689693
OPT_SET_INT('t', "track", &track, "set up tracking mode (see git-pull(1))",
690694
BRANCH_TRACK_EXPLICIT),
691695
OPT_SET_INT( 0, "set-upstream", &track, "change upstream info",
@@ -766,7 +770,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
766770
abbrev = DEFAULT_ABBREV;
767771

768772
if (delete)
769-
return delete_branches(argc, argv, delete > 1, kinds);
773+
return delete_branches(argc, argv, delete > 1, kinds, quiet);
770774
else if (list)
771775
return print_ref_list(kinds, detached, verbose, abbrev,
772776
with_commit, argv);
@@ -808,7 +812,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
808812
if (kinds != REF_LOCAL_BRANCH)
809813
die(_("-a and -r options to 'git branch' do not make sense with a branch name"));
810814
create_branch(head, argv[0], (argc == 2) ? argv[1] : head,
811-
force_create, reflog, 0, track);
815+
force_create, reflog, 0, quiet, track);
812816
} else
813817
usage_with_options(builtin_branch_usage, options);
814818

builtin/checkout.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,7 @@ static void update_refs_for_switch(struct checkout_opts *opts,
543543
opts->new_branch_force ? 1 : 0,
544544
opts->new_branch_log,
545545
opts->new_branch_force ? 1 : 0,
546+
opts->quiet,
546547
opts->track);
547548
new->name = opts->new_branch;
548549
setup_branch_path(new);

0 commit comments

Comments
 (0)