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:
Diffstat (limited to 'internal/featureflag/ff_commit_files_in_git.go')
-rw-r--r--internal/featureflag/ff_commit_files_in_git.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/featureflag/ff_commit_files_in_git.go b/internal/featureflag/ff_commit_files_in_git.go
new file mode 100644
index 000000000..32ad53869
--- /dev/null
+++ b/internal/featureflag/ff_commit_files_in_git.go
@@ -0,0 +1,10 @@
+package featureflag
+
+// CommitFilesInGit enables implementation of UserCommitFiles using
+// git plumbing commands instead of git2go
+var CommitFilesInGit = NewFeatureFlag(
+ "commit_files_in_git",
+ "16.1.0",
+ "https://gitlab.com/gitlab-org/gitaly/-/issues/5019",
+ false,
+)