# 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/cancel_fix root refs/heads/cvs-head root refs/heads/rel_0_8_11 root refs/heads/rel_0_8_12 root refs/heads/rel_0_8_14 root refs/heads/rel_0_9_0 root refs/heads/rel_2_0_0 root refs/heads/testing_0_8_12 root +refs/heads/ser_core_cvs andrei +refs/heads/ser_modules andrei # everybody can do any change in tmp/* branches +refs/heads/tmp/.* .* # everybody can do any change in kamailio/* branches # - used to release kamailio stable versions # - naming pattern: kamailio/major-version: kamailio/3.0 refs/heads/kamailio/.* .* # user branches with '_' (cvs exportable) +refs/heads/andrei_.* andrei +refs/heads/daniel_.* daniel +refs/heads/janakj_.* janakj # 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$ .* refs/heads/sr_3.0$ .* refs/heads/kamailio_3.0$ .* refs/heads/3.1$ .* refs/heads/3.2$ .* # everybody can make any tag refs/tags/.* .*