Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
fetch-pack.c: correct command at the beginning of an error message
author
Ralf Thielow
<ralf.thielow@gmail.com>
Fri, 11 Nov 2016 17:21:00 +0000
(18:21 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 11 Nov 2016 21:28:39 +0000
(13:28 -0800)
One error message in fetch-pack.c uses 'git fetch_pack' at the beginning
which is not a git command. Use 'git fetch-pack' instead.
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
fetch-pack.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
0538b84
)
diff --git
a/fetch-pack.c
b/fetch-pack.c
index cb45c346ea97059b66642b458c7ca372ece67aaa..601f0779a1903a2b860412e3404e4ea8e4bce573 100644
(file)
--- a/
fetch-pack.c
+++ b/
fetch-pack.c
@@
-240,7
+240,7
@@
static enum ack_type get_ack(int fd, unsigned char *result_sha1)
return ACK;
}
}
- die(_("git fetch
_
pack: expected ACK/NAK, got '%s'"), line);
+ die(_("git fetch
-
pack: expected ACK/NAK, got '%s'"), line);
}
static void send_request(struct fetch_pack_args *args,