@@ -537,7 +537,7 @@ apply.whitespace::
537
537
as the '--whitespace' option. See linkgit:git-apply[1].
538
538
539
539
branch.autosetupmerge::
540
- Tells 'git-branch' and 'git-checkout' to setup new branches
540
+ Tells 'git-branch' and 'git-checkout' to set up new branches
541
541
so that linkgit:git-pull[1] will appropriately merge from the
542
542
starting point branch. Note that even if this option is not set,
543
543
this behavior can be chosen per-branch using the `--track`
@@ -725,7 +725,7 @@ diff.autorefreshindex::
725
725
contents in the work tree match the contents in the
726
726
index. This option defaults to true. Note that this
727
727
affects only 'git-diff' Porcelain, and not lower level
728
- 'diff' commands, such as 'git-diff-files'.
728
+ 'diff' commands such as 'git-diff-files'.
729
729
730
730
diff.external::
731
731
If this config variable is set, diff generation is not
@@ -841,8 +841,8 @@ format.pretty::
841
841
842
842
format.thread::
843
843
The default threading style for 'git-format-patch'. Can be
844
- either a boolean value, `shallow` or `deep`. `shallow`
845
- threading makes every mail a reply to the head of the series,
844
+ a boolean value, or `shallow` or `deep`. `shallow` threading
845
+ makes every mail a reply to the head of the series,
846
846
where the head is chosen from the cover letter, the
847
847
`\--in-reply-to`, and the first patch mail, in this order.
848
848
`deep` threading makes every mail a reply to the previous one.
@@ -875,15 +875,12 @@ gc.autopacklimit::
875
875
default value is 50. Setting this to 0 disables it.
876
876
877
877
gc.packrefs::
878
- 'git-gc' does not run `git pack-refs` in a bare repository by
879
- default so that older dumb-transport clients can still fetch
880
- from the repository. Setting this to `true` lets 'git-gc'
881
- to run `git pack-refs`. Setting this to `false` tells
882
- 'git-gc' never to run `git pack-refs`. The default setting is
883
- `notbare`. Enable it only when you know you do not have to
884
- support such clients. The default setting will change to `true`
885
- at some stage, and setting this to `false` will continue to
886
- prevent `git pack-refs` from being run from 'git-gc'.
878
+ Running `git pack-refs` in a repository renders it
879
+ unclonable by Git versions prior to 1.5.1.2 over dumb
880
+ transports such as HTTP. This variable determines whether
881
+ 'git gc' runs `git pack-refs`. This can be set to "nobare"
882
+ to enable it within all non-bare repos or it can be set to a
883
+ boolean value. The default is `true`.
887
884
888
885
gc.pruneexpire::
889
886
When 'git-gc' is run, it will call 'prune --expire 2.weeks.ago'.
0 commit comments