6 git-http-fetch - Download from a remote git repository via HTTP
12 'git http-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [--stdin] <commit> <url>
16 Downloads a remote git repository via HTTP.
18 *NOTE*: use of this command without -a is deprecated. The -a
19 behaviour will become the default in a future release.
24 Either the hash or the filename under [URL]/refs/ to
28 Get the commit objects.
30 Get trees associated with the commit objects.
34 Report what is downloaded.
37 Writes the commit-id into the filename under $GIT_DIR/refs/<filename> on
38 the local end after the transfer is complete.
41 Instead of a commit id on the command line (which is not expected in this
42 case), 'git http-fetch' expects lines on stdin in the format
44 <commit-id>['\t'<filename-as-in--w>]
47 Verify that everything reachable from target is fetched. Used after
48 an earlier fetch is interrupted.
52 Part of the linkgit:git[1] suite