Advertisement
arulrajnet

New Gitolite.conf

Nov 7th, 2012
1,305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Repo Group
  2. @devonly = misc testing
  3. @adminrepo = gitolite-admin
  4.  
  5. # User Group
  6. @chennaidev = arulraj aneesh ramesh
  7. @punedev = rahul ravi
  8. @developers = @punedev @chennaidev
  9. @admindev = arulraj aneesh ravi
  10.  
  11. # GIT config / Mailing configuration
  12. repo @all
  13.     R = daemon gitweb
  14.     config core.filemode = false
  15.     config hooks.emailprefix = "[gitolite] "
  16.     config hooks.envelopesender = [email protected]  
  17.     config gitweb.owner = @admindev
  18.  
  19. repo @devonly
  20.     config gitweb.category = "Dev team's repos"
  21.  
  22. repo @adminrepo
  23.     config hooks.mailinglist = [email protected],[email protected]
  24.     config gitweb.category = "Admin repos"
  25.  
  26. # Individual project access
  27.  
  28. repo    gitolite-admin
  29.     RW+CD   =   @admindev
  30.     desc = "GIT admin"
  31.    
  32. repo    testing
  33.     RW+     =   @all
  34.     desc = "GIT testing"   
  35.    
  36. repo    misc
  37.     RW+CD   =   @admindev
  38.     RW      =   @developers
  39.     desc = "Misc/test work for me"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement