Add fetch.writeCommitGraph to gitconfig (#20006)
Add fetch.writeCommitGraph to gitconfig to ensure that a commit-graph will be written on git fetch calls. Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
27ba86d283
commit
ea9997a9dd
1 changed files with 3 additions and 0 deletions
|
@ -238,6 +238,9 @@ func syncGitConfig() (err error) {
|
|||
if err := configSet("gc.writeCommitGraph", "true"); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := configSet("fetch.writeCommitGraph", "true"); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
if SupportProcReceive {
|
||||
|
|
Reference in a new issue