git-log --cherry-pick A...B
[git/dscho.git] / Documentation / git-archive.txt
blob8d1041598e566a3ffc87cbe294c7800be1ab0c60
1 git-archive(1)
2 ==============
4 NAME
5 ----
6 git-archive - Creates an archive of files from a named tree
9 SYNOPSIS
10 --------
11 'git-archive' --format=<fmt> [--list] [--prefix=<prefix>/] [<extra>]
12               [--remote=<repo>] <tree-ish> [path...]
14 DESCRIPTION
15 -----------
16 Creates an archive of the specified format containing the tree
17 structure for the named tree.  If <prefix> is specified it is
18 prepended to the filenames in the archive.
20 'git-archive' behaves differently when given a tree ID versus when
21 given a commit ID or tag ID.  In the first case the current time is
22 used as modification time of each file in the archive.  In the latter
23 case the commit time as recorded in the referenced commit object is
24 used instead.  Additionally the commit ID is stored in a global
25 extended pax header if the tar format is used; it can be extracted
26 using 'git-get-tar-commit-id'. In ZIP files it is stored as a file
27 comment.
29 OPTIONS
30 -------
32 --format=<fmt>::
33         Format of the resulting archive: 'tar', 'zip'...  The default
34         is 'tar'.
36 --list::
37         Show all available formats.
39 --prefix=<prefix>/::
40         Prepend <prefix>/ to each filename in the archive.
42 <extra>::
43         This can be any options that the archiver backend understand.
44         See next section.
46 --remote=<repo>::
47         Instead of making a tar archive from local repository,
48         retrieve a tar archive from a remote repository.
50 <tree-ish>::
51         The tree or commit to produce an archive for.
53 path::
54         If one or more paths are specified, include only these in the
55         archive, otherwise include all files and subdirectories.
57 BACKEND EXTRA OPTIONS
58 ---------------------
60 zip
61 ~~~
62 -0::
63         Store the files instead of deflating them.
64 -9::
65         Highest and slowest compression level.  You can specify any
66         number from 1 to 9 to adjust compression speed and ratio.
69 CONFIGURATION
70 -------------
71 By default, file and directories modes are set to 0666 or 0777 in tar
72 archives.  It is possible to change this by setting the "umask" variable
73 in the repository configuration as follows :
75 [tar]
76         umask = 002     ;# group friendly
78 The special umask value "user" indicates that the user's current umask
79 will be used instead. The default value remains 0, which means world
80 readable/writable files and directories.
82 EXAMPLES
83 --------
84 git archive --format=tar --prefix=junk/ HEAD | (cd /var/tmp/ && tar xf -)::
86         Create a tar archive that contains the contents of the
87         latest commit on the current branch, and extracts it in
88         `/var/tmp/junk` directory.
90 git archive --format=tar --prefix=git-1.4.0/ v1.4.0 | gzip >git-1.4.0.tar.gz::
92         Create a compressed tarball for v1.4.0 release.
94 git archive --format=tar --prefix=git-1.4.0/ v1.4.0{caret}\{tree\} | gzip >git-1.4.0.tar.gz::
96         Create a compressed tarball for v1.4.0 release, but without a
97         global extended pax header.
99 git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ > git-1.4.0-docs.zip::
101         Put everything in the current head's Documentation/ directory
102         into 'git-1.4.0-docs.zip', with the prefix 'git-docs/'.
104 Author
105 ------
106 Written by Franck Bui-Huu and Rene Scharfe.
108 Documentation
109 --------------
110 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
114 Part of the gitlink:git[7] suite