diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-02-13 14:01:42 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-13 09:19:34 -0800 |
commit | c2120e5e4b9f7c548b0c49f914bc0881d7cece6f (patch) | |
tree | 84b26d22f171fb249428fc22c533c50921f9cbb5 /Documentation/git-gc.txt | |
parent | 85b1f98871f19617ff7ee8ec245fe4e817a74aa4 (diff) | |
download | git-c2120e5e4b9f7c548b0c49f914bc0881d7cece6f.tar.gz git-c2120e5e4b9f7c548b0c49f914bc0881d7cece6f.tar.xz |
git-gc: run pack-refs by default unless the repo is bare
The config variable gc.packrefs is tristate now: "true", "false"
and "notbare", where "notbare" is the default.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-gc.txt')
-rw-r--r-- | Documentation/git-gc.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/git-gc.txt b/Documentation/git-gc.txt index e37758ad1..bc1658434 100644 --- a/Documentation/git-gc.txt +++ b/Documentation/git-gc.txt @@ -62,6 +62,10 @@ The optional configuration variable 'gc.rerereunresolved' indicates how long records of conflicted merge you have not resolved are kept. This defaults to 15 days. +The optional configuration variable 'gc.packrefs' determines if +`git gc` runs `git-pack-refs`. Without the configuration, `git-pack-refs` +is not run in bare repositories by default, to allow older dumb-transport +clients fetch from the repository, but this will change in the future. See Also -------- |