* [PATCH] checkout: Do not show local changes when in quiet mode
@ 2008-09-25 8:35 Jonas Fonseca
0 siblings, 0 replies; only message in thread
From: Jonas Fonseca @ 2008-09-25 8:35 UTC (permalink / raw)
To: Shawn O. Pearce, git
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
---
builtin-checkout.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
I noticed this while using topgit which checkouts out a detached head
with the -q flag and later does a final checkout, which caused local
changes to be shown twice.
diff --git a/builtin-checkout.c b/builtin-checkout.c
index 9aeb61d..b572b3b 100644
--- a/builtin-checkout.c
+++ b/builtin-checkout.c
@@ -461,7 +461,7 @@ static int merge_working_tree(struct checkout_opts *opts,
commit_locked_index(lock_file))
die("unable to write new index file");
- if (!opts->force)
+ if (!opts->force && !opts->quiet)
show_local_changes(&new->commit->object);
return 0;
--
tg: (47a765d..) jf/checkout-quiet (depends on: next)
--
Jonas Fonseca
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-09-25 8:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-25 8:35 [PATCH] checkout: Do not show local changes when in quiet mode Jonas Fonseca
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).