Re: [PATCH re-roll] Do not display 'Switched to a new branch' when the branch existed
From: Tay Ray Chuan <hidden>
Date: 2016-06-15 22:49:20
Hi, On Wed, Aug 18, 2010 at 5:16 PM, Jonathan Nieder [off-list ref] wrote:
Hi,
Johnathan, thanks for the heads up.
[snip] The "From " line and so on output by "git format-patch" are for your mailer. Clarifying From:, Date:, and Subject: lines at the start of your message are allowed, though, and can be useful when forwarding patches from someone else.
Knittl, I wonder how you generated this patch? Were you working on top of the "bad" commit?
quoted
+++ b/builtin/checkout.c@@ -536,7 +536,9 @@ static void update_refs_for_switch(structcheckout_opts *opts, new->name); else fprintf(stderr, "Switched to%s branch '%s'\n", - opts->branch_exists ? " and reset" : " a new", + opts->branch_exists + ? " and reset" + : opts->new_branch ? " a new" : "",
Strange - I thought I had this sorted out. Thanks for spotting this.
Maybe it would be clearer to write opts->new_branch ? " a new" : opts->branch_exists ? " and reset" : "", to emphasize that this is a list of condition/result pairs?
We could do with some parentheses - here's my take: fprintf(stderr, "Switched to%s branch '%s'\n", (opts->branch_exists ? " and reset" : (opts->new_branch ? " a new" : "")), new->name); -- Cheers, Ray Chuan