My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0538b84
)
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
diff --git
a/fetch-pack.c
b/fetch-pack.c
index
cb45c34
..
601f077
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,