diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-09-05 12:52:20 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-09-05 12:52:20 -0300 |
commit | 702f37e055d15028c97195303d60dd209b13a60a (patch) | |
tree | cf344adeffdf56a54f12e30f10d9afc2c8057020 /git-shell-commands/change-description | |
parent | 177ca49a40c9afdcad8bfbc7492c9f1a49d686ba (diff) | |
parent | 6af067f7fc3eb71b4cc7549999f3dd623afacb53 (diff) |
Merge branch 'master' of ../hackers
Conflicts:
authorized_keys
Diffstat (limited to 'git-shell-commands/change-description')
-rwxr-xr-x | git-shell-commands/change-description | 12 |
1 files changed, 12 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 $? |