Reminder to all repository users: Please do not add , commit and push any data files to your remote git repositories. The disk space the Git server is limited, it wasn't dimensioned to host anything else than code. Solely your code files need versioning. The data inputs/outputs don't. A good idea is to do "git add" individually on each file you want to commit, to avoid versioning unwanted content.

Manage feature flags

Starting from GitLab 9.3 we support feature flags via Flipper. You should use the Feature class (defined in lib/feature.rb) in your code to get, set and list feature flags. During runtime you can set the values for the gates via the admin API.