diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-07-31 17:43:18 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-07-31 17:43:18 -0300 |
commit | 4f84f8c5b22bc6279669fa37e847d2cda209fee5 (patch) | |
tree | 9c9670a42ae339bc9b6cb3fa3b183f71ba1ac272 /git-shell-commands | |
parent | 6f27d1a0c9553f7a9f436655cc3925639bdbc238 (diff) |
Git commands to add new repos and change descriptions, symlink to ~/git-shell-commands
Diffstat (limited to 'git-shell-commands')
-rwxr-xr-x | git-shell-commands/change-description | 12 | ||||
-rwxr-xr-x | git-shell-commands/create-bare-repo | 16 |
2 files changed, 28 insertions, 0 deletions
diff --git a/git-shell-commands/change-description b/git-shell-commands/change-description new file mode 100755 index 0000000..437833c --- /dev/null +++ b/git-shell-commands/change-description @@ -0,0 +1,12 @@ +#!/bin/sh +# Allows users to change project description +# $ ssh git@host change-description repo "description" + +set -E + +repo=$1; shift +description="$@" + +echo "${repo}.git/${description}" > description + +exit $? diff --git a/git-shell-commands/create-bare-repo b/git-shell-commands/create-bare-repo new file mode 100755 index 0000000..14a640b --- /dev/null +++ b/git-shell-commands/create-bare-repo @@ -0,0 +1,16 @@ +#!/bin/sh +# Allows users to create repo.git +# $ ssh git@host create-bare-repo repo1 repo2 ... + +set -E + +for i in $@; do +# Cleanup names + i="`echo "$i" | sed "s/[^a-z0-9\.\-\_]//gi"`" + + if [ -z "$i" ]; then continue; fi + + mkdir "$i".git + pushd "$i".git + git init --bare +done |