diff options
author | Roy Lee <roylee17@gmail.com> | 2009-03-04 00:49:29 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-03 20:16:49 -0800 |
commit | 8d1b9d23a04f43f45bd3b20616936fcdd3021446 (patch) | |
tree | f33805fea7e2ed0961d3e7987648edb13cde27d1 /Documentation | |
parent | 1d035f85649cbb0a4fcc3e341f7e854acf9cf3c1 (diff) | |
download | git-8d1b9d23a04f43f45bd3b20616936fcdd3021446.tar.gz git-8d1b9d23a04f43f45bd3b20616936fcdd3021446.tar.xz |
Documentation/git-archive.txt: Note attributes
Signed-off-by: Roy Lee <roylee17@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-archive.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/git-archive.txt b/Documentation/git-archive.txt index 41cbf9c08..5b3eb12c8 100644 --- a/Documentation/git-archive.txt +++ b/Documentation/git-archive.txt @@ -88,6 +88,18 @@ tar.umask:: archiving user's umask will be used instead. See umask(2) for details. +ATTRIBUTES +---------- + +export-ignore:: + Files and directories with the attribute export-ignore won't be + added to archive files. See linkgit:gitattributes[5] for details. + +export-subst:: + If the attribute export-subst is set for a file then git will + expand several placeholders when adding this file to an archive. + See linkgit:gitattributes[5] for details. + EXAMPLES -------- git archive --format=tar --prefix=junk/ HEAD | (cd /var/tmp/ && tar xf -):: @@ -110,6 +122,11 @@ 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/'. + +SEE ALSO +-------- +linkgit:gitattributes[5] + Author ------ Written by Franck Bui-Huu and Rene Scharfe. |