Autogenerated manpages for v1.5.3-rc1
authorJunio C Hamano <junio@hera.kernel.org>
Fri, 13 Jul 2007 00:25:17 +0000 (00:25 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Fri, 13 Jul 2007 00:25:17 +0000 (00:25 +0000)
man1/git-config.1
man1/git-log.1
man1/git-pack-objects.1
man1/git-repack.1
man7/git.7

index 19b1ab677e1fa2171a4c21b1f967b1caa54378af..5b4cb599bb6de402ddd8748c08e69961501021f6 100644 (file)
@@ -2,7 +2,7 @@
 .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
 .\" Instead of manually editing it, you probably should edit the DocBook XML
 .\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH "GIT\-CONFIG" "1" "07/12/2007" "Git 1.5.3.rc0.101.gd972c" "Git Manual"
+.TH "GIT\-CONFIG" "1" "07/13/2007" "Git 1.5.3.rc1" "Git Manual"
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -535,6 +535,9 @@ The size of the window used by \fBgit\-pack\-objects\fR(1) when no window size i
 pack.depth
 The maximum delta depth used by \fBgit\-pack\-objects\fR(1) when no maximum depth is given on the command line. Defaults to 50.
 .TP
+pack.windowMemory
+The window memory size limit used by \fBgit\-pack\-objects\fR(1) when no limit is given on the command line. The value can be suffixed with "k", "m", or "g". Defaults to 0, meaning no limit.
+.TP
 pack.compression
 An integer \-1..9, indicating the compression level for objects in a pack file. \-1 is the zlib default. 0 means no compression, and 1..9 are various speed/size tradeoffs, 9 being slowest. If not set, defaults to core.compression. If that is not set, defaults to \-1.
 .TP
index a2a30e053de2a3c0f2ad0f7b44bad5496ce88763..bd12a04392011474d505050f06ad674804c0005f 100644 (file)
@@ -2,7 +2,7 @@
 .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
 .\" Instead of manually editing it, you probably should edit the DocBook XML
 .\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH "GIT\-LOG" "1" "06/21/2007" "Git 1.5.2.2.249.g45fd" "Git Manual"
+.TH "GIT\-LOG" "1" "07/13/2007" "Git 1.5.3.rc1" "Git Manual"
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -51,6 +51,9 @@ Print out the ref names of any commits that are shown.
 \-\-full\-diff
 Without this flag, "git log \-p <paths>\&..." shows commits that touch the specified paths, and diffs about the same specified paths. With this, the full diff is shown for commits that touch the specified paths; this means that "<paths>\&..." limits only commits, and doesn't limit diff for those commits.
 .TP
+\-\-follow
+Continue listing the history of a file beyond renames.
+.TP
 <paths>\&...
 Show only commits that affect the specified paths.
 .SH "PRETTY FORMATS"
@@ -258,6 +261,9 @@ Show the changes during the last two weeks to the file \fIgitk\fR. The "\-\-" is
 .TP
 git log \-r \-\-name\-status release..test
 Show the commits that are in the "test" branch but not yet in the "release" branch, along with the list of paths each commit modifies.
+.TP
+git log \-\-follow builtin\-rev\-list.c
+Shows the commits that changed builtin\-rev\-list.c, including those commits that occurred before the file was given its present name.
 .SH "DISCUSSION"
 At the core level, git is character encoding agnostic.
 .TP 3
index d90cf59514b9c662dda991515daf3cda42381785..8c33dd98f5cf16104a7ff6808941b2a5a57930bd 100644 (file)
@@ -2,7 +2,7 @@
 .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
 .\" Instead of manually editing it, you probably should edit the DocBook XML
 .\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH "GIT\-PACK\-OBJECTS" "1" "06/16/2007" "Git 1.5.2.2.236.g952c8" "Git Manual"
+.TH "GIT\-PACK\-OBJECTS" "1" "07/13/2007" "Git 1.5.3.rc1" "Git Manual"
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -46,6 +46,9 @@ This implies \-\-revs. In addition to the list of revision arguments read from t
 \-\-window=[N], \-\-depth=[N]
 These two options affect how the objects contained in the pack are stored using delta compression. The objects are first internally sorted by type, size and optionally names and compared against the other objects within \-\-window to see if using delta compression saves space. \-\-depth limits the maximum delta depth; making it too deep affects the performance on the unpacker side, because delta data needs to be applied that many times to get to the necessary object. The default value for \-\-window is 10 and \-\-depth is 50.
 .TP
+\-\-window\-memory=[N]
+This option provides an additional limit on top of \-\-window; the window size will dynamically scale down so as to not take up more than N bytes in memory. This is useful in repositories with a mix of large and small objects to not run out of memory with a large window, but still be able to take advantage of the large window for the smaller objects. The size can be suffixed with "k", "m", or "g". \-\-window\-memory=0 makes memory usage unlimited, which is the default.
+.TP
 \-\-max\-pack\-size=<n>
 Maximum size of each output packfile, expressed in MiB. If specified, multiple packfiles may be created. The default is unlimited.
 .TP
index 19423c1d39d8bdcb2e56414f9cc8e3daa2115e86..a46feeaae72fc988cb710effc3e6f6723d15f179 100644 (file)
@@ -2,7 +2,7 @@
 .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
 .\" Instead of manually editing it, you probably should edit the DocBook XML
 .\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH "GIT\-REPACK" "1" "07/01/2007" "Git 1.5.2.2.619.g06f59" "Git Manual"
+.TH "GIT\-REPACK" "1" "07/13/2007" "Git 1.5.3.rc1" "Git Manual"
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -40,6 +40,9 @@ Do not update the server information with git update\-server\-info.
 \-\-window=[N], \-\-depth=[N]
 These two options affect how the objects contained in the pack are stored using delta compression. The objects are first internally sorted by type, size and optionally names and compared against the other objects within \-\-window to see if using delta compression saves space. \-\-depth limits the maximum delta depth; making it too deep affects the performance on the unpacker side, because delta data needs to be applied that many times to get to the necessary object. The default value for \-\-window is 10 and \-\-depth is 50.
 .TP
+\-\-window\-memory=[N]
+This option provides an additional limit on top of \-\-window; the window size will dynamically scale down so as to not take up more than N bytes in memory. This is useful in repositories with a mix of large and small objects to not run out of memory with a large window, but still be able to take advantage of the large window for the smaller objects. The size can be suffixed with "k", "m", or "g". \-\-window\-memory=0 makes memory usage unlimited, which is the default.
+.TP
 \-\-max\-pack\-size=<n>
 Maximum size of each output packfile, expressed in MiB. If specified, multiple packfiles may be created. The default is unlimited.
 .SH "CONFIGURATION"
index da57df7504f67f7ea74aa06ae546f20c56d8cf8c..9b5409113131e2c19a1f0c1b786e851ab3502bb5 100644 (file)
@@ -2,7 +2,7 @@
 .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
 .\" Instead of manually editing it, you probably should edit the DocBook XML
 .\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH "GIT" "7" "07/07/2007" "Git 1.5.3.rc0.63.gc956" "Git Manual"
+.TH "GIT" "7" "07/13/2007" "Git 1.5.3.rc1" "Git Manual"
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)