X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=Documentation%2Fconfig%2Ffetch.txt;h=e8cb20547c5fbbb524932fd4efe09793fd544837;hb=50f26bd035816c2bb79582b834d59b49292502a9;hp=d402110638b4e465075bf1a59885563d15f190e1;hpb=aaf633c2ad10b47af7623c130ddfe7231658c7e4;p=thirdparty%2Fgit.git diff --git a/Documentation/config/fetch.txt b/Documentation/config/fetch.txt index d402110638..e8cb20547c 100644 --- a/Documentation/config/fetch.txt +++ b/Documentation/config/fetch.txt @@ -69,3 +69,13 @@ fetch.showForcedUpdates:: Set to false to enable `--no-show-forced-updates` in linkgit:git-fetch[1] and linkgit:git-pull[1] commands. Defaults to true. + +fetch.writeCommitGraph:: + Set to true to write a commit-graph after every `git fetch` command + that downloads a pack-file from a remote. Using the `--split` option, + most executions will create a very small commit-graph file on top of + the existing commit-graph file(s). Occasionally, these files will + merge and the write may take longer. Having an updated commit-graph + file helps performance of many Git commands, including `git merge-base`, + `git push -f`, and `git log --graph`. Defaults to false, unless + `feature.experimental` is true.