From: Ralf Thielow Date: Thu, 31 Oct 2019 20:41:46 +0000 (+0000) Subject: fetch.c: fix typo in a warning message X-Git-Tag: v2.25.0-rc0~121^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=391c7e40b516a0e9e7817083e0966805acffbdf3;p=thirdparty%2Fgit.git fetch.c: fix typo in a warning message Signed-off-by: Ralf Thielow Reviewed-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/builtin/fetch.c b/builtin/fetch.c index 0c345b5dfe..f9a934f098 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -1411,7 +1411,7 @@ static int do_fetch(struct transport *transport, for (rm = ref_map; rm; rm = rm->next) { if (!rm->peer_ref) { if (source_ref) { - warning(_("multiple branch detected, incompatible with --set-upstream")); + warning(_("multiple branches detected, incompatible with --set-upstream")); goto skip; } else { source_ref = rm;