Skip to content

Commit

Permalink
Fix git-rerere documentation
Browse files Browse the repository at this point in the history
rerere.enabled is _not_ on by default.  The command is enabled if rr-cache
exists even when rerere.enabled is missing, and enabled or disabled by
explicitly setting the rerere.enabled variable.
  • Loading branch information
Junio C Hamano committed Jan 15, 2008
1 parent e87e22d commit 11c57e6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Documentation/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,8 @@ rerere.enabled::
Activate recording of resolved conflicts, so that identical
conflict hunks can be resolved automatically, should they
be encountered again. linkgit:git-rerere[1] command is by
default enabled, but can be disabled by setting this option to
false.
default enabled if you create `rr-cache` directory under
`$GIT_DIR`, but can be disabled by setting this option to false.

gitcvs.enabled::
Whether the CVS server interface is enabled for this repository.
Expand Down
4 changes: 4 additions & 0 deletions Documentation/git-rerere.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ automerge results and corresponding hand-resolve results on the
initial manual merge, and later by noticing the same automerge
results and applying the previously recorded hand resolution.

[NOTE]
You need to set the configuration variable rerere.enabled to
enable this command.


COMMANDS
--------
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1187,3 +1187,4 @@ check-docs::
#
check-builtins::
./check-builtins.sh

0 comments on commit 11c57e6

Please sign in to comment.