From 7b4176f94d9726cbea52e0667dbc168cb6eadffa Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 13 Jul 2007 00:25:17 +0000 Subject: [PATCH] Autogenerated manpages for v1.5.3-rc1 --- man1/git-config.1 | 5 ++++- man1/git-log.1 | 8 +++++++- man1/git-pack-objects.1 | 5 ++++- man1/git-repack.1 | 5 ++++- man7/git.7 | 2 +- 5 files changed, 20 insertions(+), 5 deletions(-) diff --git a/man1/git-config.1 b/man1/git-config.1 index 19b1ab677..5b4cb599b 100644 --- a/man1/git-config.1 +++ b/man1/git-config.1 @@ -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 diff --git a/man1/git-log.1 b/man1/git-log.1 index a2a30e053..bd12a0439 100644 --- a/man1/git-log.1 +++ b/man1/git-log.1 @@ -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 \&..." 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 "\&..." limits only commits, and doesn't limit diff for those commits. .TP +\-\-follow +Continue listing the history of a file beyond renames. +.TP \&... 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 diff --git a/man1/git-pack-objects.1 b/man1/git-pack-objects.1 index d90cf5951..8c33dd98f 100644 --- a/man1/git-pack-objects.1 +++ b/man1/git-pack-objects.1 @@ -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= Maximum size of each output packfile, expressed in MiB. If specified, multiple packfiles may be created. The default is unlimited. .TP diff --git a/man1/git-repack.1 b/man1/git-repack.1 index 19423c1d3..a46feeaae 100644 --- a/man1/git-repack.1 +++ b/man1/git-repack.1 @@ -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= Maximum size of each output packfile, expressed in MiB. If specified, multiple packfiles may be created. The default is unlimited. .SH "CONFIGURATION" diff --git a/man7/git.7 b/man7/git.7 index da57df750..9b5409113 100644 --- a/man7/git.7 +++ b/man7/git.7 @@ -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) -- 2.26.2