blob: 69cfa6ffe52286c864a430953b2955bf120f1f87 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
umask 0002
# http://eagleas.livejournal.com/18907.html
name="$1"
mkdir -p $name
cd $name
git --bare init --shared=group
chmod g+ws branches info objects refs
( cd objects; chmod g+ws * )
|