From: Junio C Hamano
Date: Mon, 26 May 2008 01:16:14 +0000 (+0000)
Subject: Autogenerated HTML docs for v1.5.6-rc0
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=dfccbb0719b88f4df05bf718c6008166dbadea44;p=git.git
Autogenerated HTML docs for v1.5.6-rc0
---
diff --git a/config.txt b/config.txt
index 002a06689..c298dc21c 100644
--- a/config.txt
+++ b/config.txt
@@ -662,11 +662,24 @@ gitcvs.logfile::
Path to a log file where the CVS server interface well... logs
various stuff. See linkgit:git-cvsserver[1].
+gitcvs.usecrlfattr
+ If true, the server will look up the `crlf` attribute for
+ files to determine the '-k' modes to use. If `crlf` is set,
+ the '-k' mode will be left blank, so cvs clients will
+ treat it as text. If `crlf` is explicitly unset, the file
+ will be set with '-kb' mode, which supresses any newline munging
+ the client might otherwise do. If `crlf` is not specified,
+ then 'gitcvs.allbinary' is used. See linkgit:gitattribute[5].
+
gitcvs.allbinary::
- If true, all files are sent to the client in mode '-kb'. This
- causes the client to treat all files as binary files which suppresses
- any newline munging it otherwise might do. A work-around for the
- fact that there is no way yet to set single files to mode '-kb'.
+ This is used if 'gitcvs.usecrlfattr' does not resolve
+ the correct '-kb' mode to use. If true, all
+ unresolved files are sent to the client in
+ mode '-kb'. This causes the client to treat them
+ as binary files, which suppresses any newline munging it
+ otherwise might do. Alternatively, if it is set to "guess",
+ then the contents of the file are examined to decide if
+ it is binary, similar to 'core.autocrlf'.
gitcvs.dbname::
Database used by git-cvsserver to cache revision information
@@ -697,8 +710,9 @@ gitcvs.dbTableNamePrefix::
linkgit:git-cvsserver[1] for details). Any non-alphabetic
characters will be replaced with underscores.
-All gitcvs variables except for 'gitcvs.allbinary' can also be
-specified as 'gitcvs..' (where 'access_method'
+All gitcvs variables except for 'gitcvs.usecrlfattr' and
+'gitcvs.allbinary' can also be specified as
+'gitcvs..' (where 'access_method'
is one of "ext" and "pserver") to make them apply only for the given
access method.
diff --git a/core-tutorial.html b/core-tutorial.html
index 75db35a31..c18105825 100644
--- a/core-tutorial.html
+++ b/core-tutorial.html
@@ -266,7 +266,7 @@ div.exampleblock-content {
This tutorial explains how to use the "core" git programs to set up and
work with a git repository.
If you just need to use git as a revision control system you may prefer
-to start with a tutorial introduction to git or
+to start with gittutorial(7)[a tutorial introduction to git] or
the git user manual.
However, an understanding of these low-level tools can be helpful if
you want to understand git's internals.
@@ -1873,7 +1873,7 @@ Use git format-patch origin to prepare patches for e-mail
suggested in the previous section may be new to you. You do not
have to worry. git supports "shared public repository" style of
cooperation you are probably more familiar with as well.
-See git for CVS users for the details.
+See gitcvs-migration(7)[git for CVS users] for the details.
Bundling your work together
@@ -1967,7 +1967,7 @@ to follow, not easier.