# list of users allowed to commit on each branch # (used by the update hook updated from # http://www.kernel.org/pub/software/scm/git/docs/howto/update-hook-example.txt # ) # Format: branch_pattern user_pattern_list # All the patterns are regular expressions, separated by whitespace # A branch patter starting with a '+' has a special meaning: on that branch # non-fast-forwards are allowed. # The pattern evaluation stops on first match (so all user allowed to commit # on some branch should be listed on the same line) # original ser branches are read only (only root is allowed to update them) refs/heads/0.10 root refs/heads/1.0 root refs/heads/1.0.0 root refs/heads/1.0.0_rc1 root refs/heads/1.1 root refs/heads/1.2 .* refs/heads/1.3 .* refs/heads/1.4 .* refs/heads/1.5 .* refs/heads/codec_overhaul root refs/heads/dyn_inv root refs/heads/internal_sip_stack root refs/heads/pysip root refs/heads/sdp_parser root refs/heads/sst_b2b sayer refs/heads/wb sayer +refs/heads/rco/.* rco # everybody can do any change in tmp/* branches +refs/heads/tmp/.* .* # user branches of the form refs/heads/${username} are automatically # allowed if acl.userBranches is set to "allow" in the config # everybody can commit on the master branch refs/heads/master$ .* # everybody can make any tag refs/tags/.* .*