X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=send-pack.c;h=2a14b00845c0211a0ddb38dad892ff2be0fdc8cc;hb=5a3277133d200151fe526e56e036c933d343958a;hp=9f9a6e70b8789f63891c5b6e07822c546af8eec4;hpb=4ae22d96fe9248dac4f26b1fc91154ba5e879799;p=git.git diff --git a/send-pack.c b/send-pack.c index 9f9a6e70..2a14b008 100644 --- a/send-pack.c +++ b/send-pack.c @@ -126,12 +126,12 @@ static int ref_newer(const unsigned char *new_sha1, /* Both new and old must be commit-ish and new is descendant of * old. Otherwise we require --force. */ - o = deref_tag(parse_object(old_sha1)); + o = deref_tag(parse_object(old_sha1), NULL, 0); if (!o || o->type != commit_type) return 0; old = (struct commit *) o; - o = deref_tag(parse_object(new_sha1)); + o = deref_tag(parse_object(new_sha1), NULL, 0); if (!o || o->type != commit_type) return 0; new = (struct commit *) o; @@ -273,6 +273,7 @@ int main(int argc, char **argv) int fd[2], ret; pid_t pid; + setup_git_directory(); argv++; for (i = 1; i < argc; i++, argv++) { char *arg = *argv;