>From b149c0fca7399030225750958bf5c962c3796b44 Mon Sep 17 00:00:00 2001 From: Andy Parkins <andyparkins@xxxxxxxxx> Date: Wed, 25 Oct 2006 15:49:50 +0100 Subject: [PATCH] Make new builtin cherry match documentation for "+" and "-" To: git@xxxxxxxxxxxxxxx X-TUID: 218b478df3f8d847 X-UID: 128 X-Length: 1090 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610251549.51121.andyparkins@xxxxxxxxx> "+" and "-" don't match the documentation, where "+" means the patch /is/ in upstream, "-" means it isn't Signed-off-by: Andy Parkins <andyparkins@xxxxxxxxx> --- builtin-log.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin-log.c b/builtin-log.c index 840c742..8ded627 100644 --- a/builtin-log.c +++ b/builtin-log.c @@ -519,12 +519,12 @@ int cmd_cherry(int argc, const char **ar while (list) { unsigned char sha1[20]; - char sign = '+'; + char sign = '-'; commit = list->item; if (!get_patch_id(commit, &patch_id_opts, sha1) && lookup_object(sha1)) - sign = '-'; + sign = '+'; if (verbose) { static char buf[16384]; -- 1.4.2.3 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html