Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 1 | git-archive(1) |
| 2 | ============== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 4ec0671 | 2007-06-09 20:39:33 | [diff] [blame] | 6 | git-archive - Create an archive of files from a named tree |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Junio C Hamano | a9b8d24 | 2007-05-19 04:51:55 | [diff] [blame] | 11 | [verse] |
Junio C Hamano | e367f7b | 2009-08-28 09:18:28 | [diff] [blame] | 12 | 'git archive' [--format=<fmt>] [--list] [--prefix=<prefix>/] [<extra>] |
Junio C Hamano | d6fff40 | 2009-09-14 09:40:50 | [diff] [blame] | 13 | [-o | --output=<file>] [--worktree-attributes] |
Junio C Hamano | 764a667 | 2007-10-23 01:23:31 | [diff] [blame] | 14 | [--remote=<repo> [--exec=<git-upload-archive>]] <tree-ish> |
Junio C Hamano | d2179ef | 2010-10-22 04:12:17 | [diff] [blame] | 15 | [<path>...] |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 16 | |
| 17 | DESCRIPTION |
| 18 | ----------- |
| 19 | Creates an archive of the specified format containing the tree |
Junio C Hamano | 58155b4 | 2007-09-15 07:46:14 | [diff] [blame] | 20 | structure for the named tree, and writes it out to the standard |
| 21 | output. If <prefix> is specified it is |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 22 | prepended to the filenames in the archive. |
| 23 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 24 | 'git archive' behaves differently when given a tree ID versus when |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 25 | given a commit ID or tag ID. In the first case the current time is |
Junio C Hamano | fd83b8e | 2009-03-22 08:21:41 | [diff] [blame] | 26 | used as the modification time of each file in the archive. In the latter |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 27 | case the commit time as recorded in the referenced commit object is |
| 28 | used instead. Additionally the commit ID is stored in a global |
| 29 | extended pax header if the tar format is used; it can be extracted |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 30 | using 'git get-tar-commit-id'. In ZIP files it is stored as a file |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 31 | comment. |
| 32 | |
| 33 | OPTIONS |
| 34 | ------- |
| 35 | |
| 36 | --format=<fmt>:: |
Junio C Hamano | d6fff40 | 2009-09-14 09:40:50 | [diff] [blame] | 37 | Format of the resulting archive: 'tar' or 'zip'. If this option |
| 38 | is not given, and the output file is specified, the format is |
| 39 | inferred from the filename if possible (e.g. writing to "foo.zip" |
| 40 | makes the output to be in the zip format). Otherwise the output |
| 41 | format is `tar`. |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 42 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 43 | -l:: |
| 44 | --list:: |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 45 | Show all available formats. |
| 46 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 47 | -v:: |
| 48 | --verbose:: |
Junio C Hamano | 81c711d | 2007-04-20 07:20:14 | [diff] [blame] | 49 | Report progress to stderr. |
| 50 | |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 51 | --prefix=<prefix>/:: |
| 52 | Prepend <prefix>/ to each filename in the archive. |
| 53 | |
Junio C Hamano | d6fff40 | 2009-09-14 09:40:50 | [diff] [blame] | 54 | -o <file>:: |
Junio C Hamano | 36ac993 | 2009-03-05 09:57:10 | [diff] [blame] | 55 | --output=<file>:: |
| 56 | Write the archive to <file> instead of stdout. |
| 57 | |
Junio C Hamano | 4cfa536 | 2009-04-18 23:01:01 | [diff] [blame] | 58 | --worktree-attributes:: |
| 59 | Look for attributes in .gitattributes in working directory too. |
| 60 | |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 61 | <extra>:: |
Junio C Hamano | fd83b8e | 2009-03-22 08:21:41 | [diff] [blame] | 62 | This can be any options that the archiver backend understands. |
Junio C Hamano | 817abb4 | 2006-09-26 07:16:58 | [diff] [blame] | 63 | See next section. |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 64 | |
| 65 | --remote=<repo>:: |
Junio C Hamano | fd83b8e | 2009-03-22 08:21:41 | [diff] [blame] | 66 | Instead of making a tar archive from the local repository, |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 67 | retrieve a tar archive from a remote repository. |
| 68 | |
Junio C Hamano | 764a667 | 2007-10-23 01:23:31 | [diff] [blame] | 69 | --exec=<git-upload-archive>:: |
| 70 | Used with --remote to specify the path to the |
Junio C Hamano | ba4b928 | 2008-07-06 05:20:31 | [diff] [blame] | 71 | 'git-upload-archive' on the remote side. |
Junio C Hamano | 764a667 | 2007-10-23 01:23:31 | [diff] [blame] | 72 | |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 73 | <tree-ish>:: |
| 74 | The tree or commit to produce an archive for. |
| 75 | |
Junio C Hamano | d2179ef | 2010-10-22 04:12:17 | [diff] [blame] | 76 | <path>:: |
Junio C Hamano | e5574b6 | 2009-12-06 04:04:45 | [diff] [blame] | 77 | Without an optional path parameter, all files and subdirectories |
| 78 | of the current working directory are included in the archive. |
| 79 | If one or more paths are specified, only these are included. |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 80 | |
Junio C Hamano | 817abb4 | 2006-09-26 07:16:58 | [diff] [blame] | 81 | BACKEND EXTRA OPTIONS |
| 82 | --------------------- |
| 83 | |
| 84 | zip |
| 85 | ~~~ |
| 86 | -0:: |
| 87 | Store the files instead of deflating them. |
| 88 | -9:: |
| 89 | Highest and slowest compression level. You can specify any |
| 90 | number from 1 to 9 to adjust compression speed and ratio. |
| 91 | |
| 92 | |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 93 | CONFIGURATION |
| 94 | ------------- |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 95 | |
Junio C Hamano | bdebabb | 2007-08-23 00:25:09 | [diff] [blame] | 96 | tar.umask:: |
| 97 | This variable can be used to restrict the permission bits of |
| 98 | tar archive entries. The default is 0002, which turns off the |
| 99 | world write bit. The special value "user" indicates that the |
| 100 | archiving user's umask will be used instead. See umask(2) for |
| 101 | details. |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 102 | |
Junio C Hamano | a9eca4e | 2009-03-04 08:29:59 | [diff] [blame] | 103 | ATTRIBUTES |
| 104 | ---------- |
| 105 | |
| 106 | export-ignore:: |
| 107 | Files and directories with the attribute export-ignore won't be |
| 108 | added to archive files. See linkgit:gitattributes[5] for details. |
| 109 | |
| 110 | export-subst:: |
| 111 | If the attribute export-subst is set for a file then git will |
| 112 | expand several placeholders when adding this file to an archive. |
| 113 | See linkgit:gitattributes[5] for details. |
| 114 | |
Junio C Hamano | 1123f30 | 2010-02-12 20:51:24 | [diff] [blame] | 115 | Note that attributes are by default taken from the `.gitattributes` files |
| 116 | in the tree that is being archived. If you want to tweak the way the |
| 117 | output is generated after the fact (e.g. you committed without adding an |
| 118 | appropriate export-ignore in its `.gitattributes`), adjust the checked out |
Junio C Hamano | 8143563 | 2011-01-12 09:08:48 | [diff] [blame^] | 119 | `.gitattributes` file as necessary and use `--worktree-attributes` |
Junio C Hamano | 1123f30 | 2010-02-12 20:51:24 | [diff] [blame] | 120 | option. Alternatively you can keep necessary attributes that should apply |
| 121 | while archiving any tree in your `$GIT_DIR/info/attributes` file. |
| 122 | |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 123 | EXAMPLES |
| 124 | -------- |
| 125 | git archive --format=tar --prefix=junk/ HEAD | (cd /var/tmp/ && tar xf -):: |
| 126 | |
| 127 | Create a tar archive that contains the contents of the |
Junio C Hamano | fd83b8e | 2009-03-22 08:21:41 | [diff] [blame] | 128 | latest commit on the current branch, and extract it in the |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 129 | `/var/tmp/junk` directory. |
| 130 | |
| 131 | git archive --format=tar --prefix=git-1.4.0/ v1.4.0 | gzip >git-1.4.0.tar.gz:: |
| 132 | |
| 133 | Create a compressed tarball for v1.4.0 release. |
| 134 | |
| 135 | git archive --format=tar --prefix=git-1.4.0/ v1.4.0{caret}\{tree\} | gzip >git-1.4.0.tar.gz:: |
| 136 | |
| 137 | Create a compressed tarball for v1.4.0 release, but without a |
| 138 | global extended pax header. |
| 139 | |
| 140 | git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ > git-1.4.0-docs.zip:: |
| 141 | |
| 142 | Put everything in the current head's Documentation/ directory |
| 143 | into 'git-1.4.0-docs.zip', with the prefix 'git-docs/'. |
| 144 | |
Junio C Hamano | d6fff40 | 2009-09-14 09:40:50 | [diff] [blame] | 145 | git archive -o latest.zip HEAD:: |
| 146 | |
| 147 | Create a Zip archive that contains the contents of the latest |
| 148 | commit on the current branch. Note that the output format is |
| 149 | inferred by the extension of the output file. |
| 150 | |
Junio C Hamano | a9eca4e | 2009-03-04 08:29:59 | [diff] [blame] | 151 | |
| 152 | SEE ALSO |
| 153 | -------- |
| 154 | linkgit:gitattributes[5] |
| 155 | |
Junio C Hamano | 781d8a2 | 2006-09-17 10:34:15 | [diff] [blame] | 156 | Author |
| 157 | ------ |
| 158 | Written by Franck Bui-Huu and Rene Scharfe. |
| 159 | |
| 160 | Documentation |
| 161 | -------------- |
| 162 | Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>. |
| 163 | |
| 164 | GIT |
| 165 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 166 | Part of the linkgit:git[1] suite |