6 git-local-fetch - Duplicate another git repository on a local system
12 'git-local-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [-l] [-s] [-n]
17 THIS COMMAND IS DEPRECATED.
19 Duplicates another git repository on a local system.
24 Get the commit objects.
26 Get trees associated with the commit objects.
30 Report what is downloaded.
32 Instead of regular file-to-file copying use symbolic links to the objects
33 in the remote repository.
35 Before attempting symlinks (if -s is specified) or file-to-file copying the
36 remote objects, try to hardlink the remote objects into the local
39 Never attempt to file-to-file copy remote objects. Only useful with
40 -s or -l command-line options.
43 Writes the commit-id into the filename under $GIT_DIR/refs/<filename> on
44 the local end after the transfer is complete.
47 Instead of a commit id on the command line (which is not expected in this
48 case), 'git-local-fetch' expects lines on stdin in the format
50 <commit-id>['\t'<filename-as-in--w>]
53 Verify that everything reachable from target is fetched. Used after
54 an earlier fetch is interrupted.
58 Written by Junio C Hamano <junkio@cox.net>
62 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
66 Part of the gitlink:git[7] suite