(unknown)
From: <hidden>
Date: 2016-08-11 19:29:57
Subsystem:
the rest · Maintainer:
Linus Torvalds
From b149c0fca7399030225750958bf5c962c3796b44 Mon Sep 17 00:00:00 2001 From: Andy Parkins <redacted> Date: Wed, 25 Oct 2006 15:49:50 +0100 Subject: [PATCH] Make new builtin cherry match documentation for "+" and "-" To: git@vger.kernel.org X-TUID: 218b478df3f8d847 X-UID: 128 X-Length: 1090 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: [off-list ref] "+" and "-" don't match the documentation, where "+" means the patch /is/ in upstream, "-" means it isn't Signed-off-by: Andy Parkins <redacted> --- 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