Advertisement
arulrajnet

My Gitolite.conf

Oct 22nd, 2012
820
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.     config gitweb.description = "GIT admin"
  26.  
  27. # Description for projects
  28. gitolite-admin = "GIT admin"
  29. testing = "GIT testing"
  30. misc = "Misc/test work for me"
  31.  
  32. # Individual project access
  33.  
  34. repo    gitolite-admin
  35.     RW+CD   =   @admindev
  36.  
  37. repo    testing
  38.     RW+     =   @all
  39.    
  40. repo    misc
  41.     RW+CD   =   @admindev
  42.     RW      =   @developers
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement