* [PATCH] checkout: obey -q option
@ 2008-02-20 23:08 Gustaf Hendeby
0 siblings, 0 replies; only message in thread
From: Gustaf Hendeby @ 2008-02-20 23:08 UTC (permalink / raw)
To: git; +Cc: gitster, Gustaf Hendeby
Signed-off-by: Gustaf Hendeby <hendeby@isy.liu.se>
---
This makes the new tracking output introduced by
79a1e6b432d7d7ffaf2079d4cf895583502ca923 (checkout: notice when the
switched branch is behind or forked) obey the silence option. FWIW, I
would really prefer only to get the one line informing me that I could
do a fast-forward or will need a merge unless I specifically ask for
more. Is that something worth exploring? Right now checkout is a bit
too talkative for my taste.
/Gustaf
builtin-checkout.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/builtin-checkout.c b/builtin-checkout.c
index b1820a4..104ce4f 100644
--- a/builtin-checkout.c
+++ b/builtin-checkout.c
@@ -402,7 +402,7 @@ static void update_refs_for_switch(struct checkout_opts *opts,
}
remove_branch_state();
strbuf_release(&msg);
- if (new->path || !strcmp(new->name, "HEAD"))
+ if (!opts->quiet && (new->path || !strcmp(new->name, "HEAD")))
adjust_to_tracking(new, opts);
}
--
1.5.4.2.232.g08e5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-02-20 23:09 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-20 23:08 [PATCH] checkout: obey -q option Gustaf Hendeby
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).