diff options
| author | Ralf Thielow <ralf.thielow@gmail.com> | 2019-10-31 20:41:46 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2019-11-02 14:49:18 +0900 |
| commit | 391c7e40b516a0e9e7817083e0966805acffbdf3 (patch) | |
| tree | f526f8c8df96f40cd758456b6574f8b3d02a013b | |
| parent | 849e43680d5c6ee431378c66f839113ab74146ae (diff) | |
| download | git-391c7e40b516a0e9e7817083e0966805acffbdf3.tar.gz | |
fetch.c: fix typo in a warning message
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | builtin/fetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
