An fsck issue in a legacy repository might be so common that one would like not to bother the user with mentioning it at all. With this change, that is possible by setting the respective message type to "ignore". This change "abuses" the missingemail=warn test to verify that "ignore" is also accepted and works correctly. And while at it, it makes sure that multiple options work, too (they are passed to unpack-objects or index-pack as a comma-separated list via the --strict=... command-line option). Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> --- fsck.c | 5 +++++ fsck.h | 1 + t/t5504-fetch-receive-strict.sh | 9 ++++++++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/fsck.c b/fsck.c index 2b2a360..0f7eb22 100644 --- a/fsck.c +++ b/fsck.c @@ -137,6 +137,8 @@ static int parse_msg_type(const char *str, int len) return FSCK_ERROR; else if (!substrcmp(str, len, "warn")) return FSCK_WARN; + else if (!substrcmp(str, len, "ignore")) + return FSCK_IGNORE; else die("Unknown fsck message type: '%.*s'", len, str); @@ -220,6 +222,9 @@ static int report(struct fsck_options *options, struct object *object, struct strbuf sb = STRBUF_INIT; int msg_type = fsck_msg_type(id, options), result; + if (msg_type == FSCK_IGNORE) + return 0; + if (msg_type == FSCK_FATAL) msg_type = FSCK_ERROR; diff --git a/fsck.h b/fsck.h index 738c9df..7e49372 100644 --- a/fsck.h +++ b/fsck.h @@ -3,6 +3,7 @@ #define FSCK_ERROR 1 #define FSCK_WARN 2 +#define FSCK_IGNORE 3 struct fsck_options; diff --git a/t/t5504-fetch-receive-strict.sh b/t/t5504-fetch-receive-strict.sh index 0d64229..cb077b7 100755 --- a/t/t5504-fetch-receive-strict.sh +++ b/t/t5504-fetch-receive-strict.sh @@ -133,7 +133,14 @@ test_expect_success 'push with receive.fsck.missingemail=warn' ' git --git-dir=dst/.git config \ receive.fsck.missingemail warn && git push --porcelain dst bogus >act 2>&1 && - grep "missingemail" act + grep "missingemail" act && + git --git-dir=dst/.git branch -D bogus && + git --git-dir=dst/.git config --add \ + receive.fsck.missingemail ignore && + git --git-dir=dst/.git config --add \ + receive.fsck.baddate warn && + git push --porcelain dst bogus >act 2>&1 && + test_must_fail grep "missingemail" act ' test_expect_success \ -- 2.3.1.windows.1.9.g8c01ab4 -- 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