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:
authorXing Xin <xingxin.xx@bytedance.com>2023-08-05 11:14:00 +0300
committerXing Xin <xingxin.xx@bytedance.com>2023-08-15 14:20:00 +0300
commit231230e104f5c8162a2f9212086dd81d41b707d3 (patch)
treece86dba4fd95c600e4847748ecee29debfd2b078
parent78cd66c96cfab215db400aba55770efeb69bc56e (diff)
featureflag: Add UserRebaseConfirmablePureGit
Introduce a new featureflag UserRebaseConfirmablePureGit which will be used to rollout the pure git implmented rebase. Signed-off-by: Xing Xin <xingxin.xx@bytedance.com>
-rw-r--r--internal/featureflag/ff_user_rebase_confirmable_pure_git.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/featureflag/ff_user_rebase_confirmable_pure_git.go b/internal/featureflag/ff_user_rebase_confirmable_pure_git.go
new file mode 100644
index 000000000..4ee2df0a8
--- /dev/null
+++ b/internal/featureflag/ff_user_rebase_confirmable_pure_git.go
@@ -0,0 +1,10 @@
+package featureflag
+
+// UserRebaseConfirmablePureGit will enable the UserRebaseConfirmable RPC to
+// use a pure git implemented rebase instead of git2go.
+var UserRebaseConfirmablePureGit = NewFeatureFlag(
+ "user_rebase_confirmable_pure_git",
+ "v16.3.0",
+ "https://gitlab.com/gitlab-org/gitaly/-/issues/5493",
+ false,
+)