Merge branch 'fe/cvsserver'
authorJunio C Hamano <gitster@pobox.com>
Wed, 14 Jan 2009 07:09:35 +0000 (23:09 -0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 14 Jan 2009 07:09:35 +0000 (23:09 -0800)
* fe/cvsserver:
cvsserver: change generation of CVS author names
cvsserver: add option to configure commit message

1  2 
Documentation/config.txt
diff --combined Documentation/config.txt
index ea0cd97b04296d29bca853f1e20383ba9f840851,b4e0eea9f70a62ac84fe506a27acd72d4037faa4..6b3ac5aa90757cde33f6a5d442c570aee06d2f0b
@@@ -702,9 -702,7 +702,9 @@@ gc.packrefs:
  
  gc.pruneexpire::
        When 'git-gc' is run, it will call 'prune --expire 2.weeks.ago'.
 -      Override the grace period with this config variable.
 +      Override the grace period with this config variable.  The value
 +      "now" may be used to disable this  grace period and always prune
 +      unreachable objects immediately.
  
  gc.reflogexpire::
        'git-reflog expire' removes reflog entries older than
@@@ -725,6 -723,10 +725,10 @@@ gc.rerereunresolved:
        kept for this many days when 'git-rerere gc' is run.
        The default is 15 days.  See linkgit:git-rerere[1].
  
+ gitcvs.commitmsgannotation::
+       Append this string to each commit message. Set to empty string
+       to disable this feature. Defaults to "via git-CVS emulator".
  gitcvs.enabled::
        Whether the CVS server interface is enabled for this repository.
        See linkgit:git-cvsserver[1].
@@@ -1046,16 -1048,6 +1050,16 @@@ mergetool.keepBackup:
        is set to `false` then this file is not preserved.  Defaults to
        `true` (i.e. keep the backup files).
  
 +mergetool.keepTemporaries::
 +      When invoking a custom merge tool, git uses a set of temporary
 +      files to pass to the tool. If the tool returns an error and this
 +      variable is set to `true`, then these temporary files will be
 +      preserved, otherwise they will be removed after the tool has
 +      exited. Defaults to `false`.
 +
 +mergetool.prompt::
 +      Prompt before each invocation of the merge resolution program.
 +
  pack.window::
        The size of the window used by linkgit:git-pack-objects[1] when no
        window size is given on the command line. Defaults to 10.