Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Okstad <pokstad@gitlab.com>2019-04-26 17:47:53 +0300
committerPaul Okstad <pokstad@gitlab.com>2019-04-26 17:47:53 +0300
commitb3755482c821fac8b89e6a005619e70828209846 (patch)
tree466dcd1685181572a286e21c5ad4b9bd4da135e3
parent7cee9c9b7d1b9d3d75069769a5f6dd73aa877161 (diff)
parentf095863aa87bbc13143ffa89216831a5cdcf9a28 (diff)
Merge branch 'do-not-write-commit-graph-using-commit-graph' into 'master'
git gc invocation: don't write commit-graph with core.commitGraph=true See merge request gitlab-org/gitaly!1224
-rw-r--r--internal/service/repository/gc.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/service/repository/gc.go b/internal/service/repository/gc.go
index 0db28a4d0..daf073b57 100644
--- a/internal/service/repository/gc.go
+++ b/internal/service/repository/gc.go
@@ -59,7 +59,6 @@ func gc(ctx context.Context, in *gitalypb.GarbageCollectRequest) error {
// run garbage collect and also write the commit graph
args = append(args,
- "-c", "core.commitGrap=true",
"-c", "gc.writeCommitGraph=true",
"gc",
)