static char *path; /* "Remote" git repository */
+void prefetch(unsigned char *sha1)
+{
+}
+
int fetch(unsigned char *sha1)
{
static int object_name_start = -1;
}
map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, ifd, 0);
close(ifd);
- if (-1 == (int)(long)map) {
+ if (map == MAP_FAILED) {
fprintf(stderr, "cannot mmap %s\n", filename);
return -1;
}
return 0;
}
-static const char *local_pull_usage =
+static const char local_pull_usage[] =
"git-local-pull [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [-l] [-s] [-n] commit-id path";
/*
get_tree = 1;
else if (argv[arg][1] == 'c')
get_history = 1;
- else if (argv[arg][1] == 'd')
- get_delta = 0;
- else if (!strcmp(argv[arg], "--recover"))
- get_delta = 2;
else if (argv[arg][1] == 'a') {
get_all = 1;
get_tree = 1;