tags:

views:

73

answers:

1

Is there any way to modify central repository's configuration to disallow any remote pushing to master branch (using git)? It would only be updated via branch merging by a release owner.

It is possible to do in child repositories but unfortunately it's not always fool-proof enough, easy to forget to do it on new machine - no way to protect from accidental pushes. Developers should be able to pull from any branch and push back to any branch, except for master, which we want to see as read-only. Is it possible with git? Or we are trying a wrong workflow.

+4  A: 

You should take a look at the sample update hook called update-paranoid in the contrib directory of the git distribution. It allows you to set up per-branch ACLs restricting who is allowed to push to which branches. This way you can restrict updating master to just release owners.

I'm not quite sure what you mean by "only updated via branch merging". I'm assuming that your central repository is bare, in which case branches are usually only updated by a push. There's no conceptual difference in git between pushing a commit that is a merge and one that isn't so I'm not sure what your criteria for restricting the type of update for master is intended to be.

In the case that you are pushing to a non-bare central repository and master is always the checked out branch then you can simply set the config variable receive.denyCurrentBranch to true or refuse.

Charles Bailey
It should be done locally (via merge), as opposed to remote `push` which we want to prohibit. And no, it's not bare - `master` is checked out and is a working copy so to speak.Thanks, I'll take a look at the update-paranoid, maybe restricting to one person will do.
kibitzer
OK, I'll bite. Why isn't your central repository bare and which branch is generally the checked out branch?
Charles Bailey
`master` is the checked out branch; we could create a bare repository but I don't see a point since the idea was to prohibit direct pushing to master; hence this question. we could create a bare repository and pull from it if it would help at all in our quest for a read-only master :)
kibitzer
OK, in your specific case the easiest solution is to just set the config variable `receive.denyCurrenyBranch` to `true` or `refuse`. This will prevent anyone from updating the current branch, i.e. master, via a push.
Charles Bailey
simple and works, just what is needed. thanks! (I figured there's a typo ;) ).
kibitzer