Gitosis Does Not Like Multiple Writable Values per Group
I spent a long time trying to figure out why this wasn’t working in my gitosis.conf:
[gitosis]
[group PIC]
members = peter
writable = PIC/datasheets
writable = PIC/framework
writable = PIC/ifos
writable = PIC/modbus
writable = PIC/test
writable = PIC/tools/pp
Turns out that gitosis wants to see a single writable line in each group:
[gitosis]
[group PIC]
members = peter
writable = PIC/datasheets \
PIC/framework \
PIC/ifos \
PIC/modbus \
PIC/test \
PIC/tools/pp