rut2
rut2

Reputation: 706

gitlab remove read permission from protected branches

I am using gitlab 8.10.0 version. I am using protected branched feature since a long time.

Now we have setup gitlab continues deployment, in which we have to provide server credentials information in .yml file.

I want to remove even read permission from protected branches, only some people can have it.

Is it possible with gitlab, because I am not finding any solution in the interface?

Upvotes: 1

Views: 214

Answers (1)

Fairy
Fairy

Reputation: 3770

Individual branch visibility can't be configured in GitLab because it is not how git works. The only way to deny read access is to give that user Guest access or set your project to Internal and remove the user from the Group or Project entirely.

Upvotes: 1

Related Questions