X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=Documentation%2Fgit-archive.txt;h=3d1c1e75b703cc7ba7013b4c8badb50f51966e1f;hb=934c042c9cf09a14762b3fa094f1ba15ec721161;hp=ad38f7f39db8d3b973f0ede255f65bb0627bb416;hpb=58e93fa357006d9a231da48fb81eb23c417ed927;p=git.git diff --git a/Documentation/git-archive.txt b/Documentation/git-archive.txt index ad38f7f39..3d1c1e75b 100644 --- a/Documentation/git-archive.txt +++ b/Documentation/git-archive.txt @@ -9,7 +9,8 @@ git-archive - Create an archive of files from a named tree SYNOPSIS -------- [verse] -'git archive' --format= [--list] [--prefix=/] [] +'git archive' [--format=] [--list] [--prefix=/] [] + [-o | --output=] [--worktree-attributes] [--remote= [--exec=]] [path...] @@ -33,8 +34,11 @@ OPTIONS ------- --format=:: - Format of the resulting archive: 'tar' or 'zip'. The default - is 'tar'. + Format of the resulting archive: 'tar' or 'zip'. If this option + is not given, and the output file is specified, the format is + inferred from the filename if possible (e.g. writing to "foo.zip" + makes the output to be in the zip format). Otherwise the output + format is `tar`. -l:: --list:: @@ -47,6 +51,13 @@ OPTIONS --prefix=/:: Prepend / to each filename in the archive. +-o :: +--output=:: + Write the archive to instead of stdout. + +--worktree-attributes:: + Look for attributes in .gitattributes in working directory too. + :: This can be any options that the archiver backend understands. See next section. @@ -122,6 +133,12 @@ git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ > git-1.4.0-docs Put everything in the current head's Documentation/ directory into 'git-1.4.0-docs.zip', with the prefix 'git-docs/'. +git archive -o latest.zip HEAD:: + + Create a Zip archive that contains the contents of the latest + commit on the current branch. Note that the output format is + inferred by the extension of the output file. + SEE ALSO --------