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

index.md « feature_flags « development « doc - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1374b9e28091144ada98995510e4f6c269a52cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Feature flags in development of GitLab

Feature flags can be used to gradually roll out changes, be
it a new feature, or a performance improvement. By using feature flags, we can
comfortably measure the impact of our changes, while still being able to easily
disable those changes, without having to revert an entire release.

Before using feature flags for GitLab's development, read through the following:

- [Process for using features flags](process.md).
- [Developing with feature flags](development.md).
- [Controlling feature flags](controls.md).