Advertisement
arulrajnet

My Gitolite.conf

Oct 22nd, 2012
750
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 = noreply@example.com  
  17.     config gitweb.owner = @admindev
  18.  
  19. repo @devonly
  20.     config hooks.mailinglist = arulraj@example.com,aneesh@example.com,prajeesh@example.com,ramesh@example.com,rahul@example.com
  21.     config gitweb.category = "Dev team's repos"
  22.  
  23. repo @adminrepo
  24.     config hooks.mailinglist = arulraj@example.com,ravi@example.com
  25.     config gitweb.category = "Admin repos"
  26.     config gitweb.description = "GIT admin"
  27.  
  28. # Description for projects
  29. gitolite-admin = "GIT admin"
  30. testing = "GIT testing"
  31. misc = "Misc/test work for me"
  32.  
  33. # Individual project access
  34.  
  35. repo    gitolite-admin
  36.     RW+CD   =   @admindev
  37.  
  38. repo    testing
  39.     RW+     =   @all
  40.    
  41. repo    misc
  42.     RW+CD   =   @admindev
  43.     RW      =   @developers
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement