From: Junio C Hamano Date: Tue, 26 Sep 2006 07:16:58 +0000 (+0000) Subject: Autogenerated HTML docs for v1.4.2.1-g4daf X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=817abb49397feae6876cca32a894ee4afec2385a;p=git.git Autogenerated HTML docs for v1.4.2.1-g4daf --- diff --git a/git-archive.html b/git-archive.html index c0e425060..44215e7e2 100644 --- a/git-archive.html +++ b/git-archive.html @@ -322,6 +322,7 @@ comment.

This can be any options that the archiver backend understand. + See next section.

@@ -352,6 +353,29 @@ path +

BACKEND EXTRA OPTIONS

+
+

zip

+
+
+-0 +
+
+

+ Store the files instead of deflating them. +

+
+
+-9 +
+
+

+ Highest and slowest compression level. You can specify any + number from 1 to 9 to adjust compression speed and ratio. +

+
+
+

CONFIGURATION

By default, file and directories modes are set to 0666 or 0777 in tar @@ -420,7 +444,7 @@ git archive --format=zip --prefix=git-docs/ HEAD:Documentation/ > git-1.4.0-d

diff --git a/git-archive.txt b/git-archive.txt index 913528d37..031fcd519 100644 --- a/git-archive.txt +++ b/git-archive.txt @@ -40,6 +40,7 @@ OPTIONS :: This can be any options that the archiver backend understand. + See next section. --remote=:: Instead of making a tar archive from local repository, @@ -52,6 +53,18 @@ path:: If one or more paths are specified, include only these in the archive, otherwise include all files and subdirectories. +BACKEND EXTRA OPTIONS +--------------------- + +zip +~~~ +-0:: + Store the files instead of deflating them. +-9:: + Highest and slowest compression level. You can specify any + number from 1 to 9 to adjust compression speed and ratio. + + CONFIGURATION ------------- By default, file and directories modes are set to 0666 or 0777 in tar diff --git a/git.html b/git.html index 73ea3378b..7cded856a 100644 --- a/git.html +++ b/git.html @@ -795,6 +795,14 @@ ancillary user utilities.

+git-archive(1) +
+
+

+ Creates an archive of files from a named tree. +

+
+
git-bisect(1)
@@ -2164,7 +2172,7 @@ contributors on the git-list <git@vger.kernel.org>.

diff --git a/git.txt b/git.txt index 1bf5ef57e..2135b6551 100644 --- a/git.txt +++ b/git.txt @@ -266,6 +266,9 @@ gitlink:git-am[1]:: gitlink:git-applymbox[1]:: Apply patches from a mailbox, original version by Linus. +gitlink:git-archive[1]:: + Creates an archive of files from a named tree. + gitlink:git-bisect[1]:: Find the change that introduced a bug by binary search.