diff options
author | Sven Gothel <[email protected]> | 2010-11-09 03:12:37 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-09 03:12:37 +0100 |
commit | 328d022b474aea3786de67cccb09a6f392834486 (patch) | |
tree | 9493ac16fba7a3166143342b672a66778da2081a /git/git-make-shared-bare.sh | |
parent | b3e89bfa55389cae974c94afba6fb4ce118f75df (diff) |
Add backup script and git stuff
Diffstat (limited to 'git/git-make-shared-bare.sh')
-rw-r--r-- | git/git-make-shared-bare.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/git/git-make-shared-bare.sh b/git/git-make-shared-bare.sh new file mode 100644 index 0000000..78dd735 --- /dev/null +++ b/git/git-make-shared-bare.sh @@ -0,0 +1,23 @@ +#! /bin/sh + +make_git_bare() { + name=$1 + shift + mkdir $name.git + cd $name.git + git init --bare --shared=0664 + cd .. +} + +# do a: 'newgrp jogl' first +#make_git_bare gluegen +#make_git_bare jogl +#make_git_bare jogl-demos +#make_git_bare applet-launcher +#make_git_bare joal +#make_git_bare joal-demos +#make_git_bare jocl +#make_git_bare jocl-demos +#make_git_bare jogl-utils +#make_git_bare jogamp.org +make_git_bare jogamp.org-SocialCoding |