6 git-archive - Create an archive of files from a named tree
12 'git archive' --format=<fmt> [--list] [--prefix=<prefix>/] [<extra>]
13 [--remote=<repo> [--exec=<git-upload-archive>]] <tree-ish>
18 Creates an archive of the specified format containing the tree
19 structure for the named tree, and writes it out to the standard
20 output. If <prefix> is specified it is
21 prepended to the filenames in the archive.
23 `git-archive` behaves differently when given a tree ID versus when
24 given a commit ID or tag ID. In the first case the current time is
25 used as modification time of each file in the archive. In the latter
26 case the commit time as recorded in the referenced commit object is
27 used instead. Additionally the commit ID is stored in a global
28 extended pax header if the tar format is used; it can be extracted
29 using `git-get-tar-commit-id`. In ZIP files it is stored as a file
36 Format of the resulting archive: 'tar' or 'zip'. The default
41 Show all available formats.
45 Report progress to stderr.
48 Prepend <prefix>/ to each filename in the archive.
51 This can be any options that the archiver backend understand.
55 Instead of making a tar archive from local repository,
56 retrieve a tar archive from a remote repository.
58 --exec=<git-upload-archive>::
59 Used with --remote to specify the path to the
60 `git-upload-archive` on the remote side.
63 The tree or commit to produce an archive for.
66 If one or more paths are specified, include only these in the
67 archive, otherwise include all files and subdirectories.
75 Store the files instead of deflating them.
77 Highest and slowest compression level. You can specify any
78 number from 1 to 9 to adjust compression speed and ratio.
85 This variable can be used to restrict the permission bits of
86 tar archive entries. The default is 0002, which turns off the
87 world write bit. The special value "user" indicates that the
88 archiving user's umask will be used instead. See umask(2) for
93 git archive --format=tar --prefix=junk/ HEAD | (cd /var/tmp/ && tar xf -)::
95 Create a tar archive that contains the contents of the
96 latest commit on the current branch, and extracts it in
97 `/var/tmp/junk` directory.
99 git archive --format=tar --prefix=git-1.4.0/ v1.4.0 | gzip >git-1.4.0.tar.gz::
101 Create a compressed tarball for v1.4.0 release.
103 git archive --format=tar --prefix=git-1.4.0/ v1.4.0{caret}\{tree\} | gzip >git-1.4.0.tar.gz::
105 Create a compressed tarball for v1.4.0 release, but without a
106 global extended pax header.
108 git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ > git-1.4.0-docs.zip::
110 Put everything in the current head's Documentation/ directory
111 into 'git-1.4.0-docs.zip', with the prefix 'git-docs/'.
115 Written by Franck Bui-Huu and Rene Scharfe.
119 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
123 Part of the linkgit:git[1] suite