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:
authorSami Hiltunen <shiltunen@gitlab.com>2021-03-11 12:30:02 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2021-03-11 12:30:02 +0300
commit2aa99877186297b10fe46d14859f0870f32f1f4c (patch)
treeea03b79dbda4db216a5dc27ff429525596faaf3a
parentac2235fe44c106e9f69b6614ecb72b67421fd402 (diff)
parent5e76b7990def0fc826c93700c6135eb45f11f226 (diff)
Merge branch 'jv-pack-objects-flags' into 'master'
Treat git-pack-objects as command that generates packfiles See merge request gitlab-org/gitaly!3237
-rw-r--r--internal/git/subcommand.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/git/subcommand.go b/internal/git/subcommand.go
index 416d75ca0..bc80eeebb 100644
--- a/internal/git/subcommand.go
+++ b/internal/git/subcommand.go
@@ -108,7 +108,7 @@ var gitCommands = map[string]gitCommand{
flags: scNoRefUpdates,
},
"pack-objects": gitCommand{
- flags: scNoRefUpdates,
+ flags: scNoRefUpdates | scGeneratesPackfiles,
},
"receive-pack": gitCommand{
flags: 0,