summaryrefslogtreecommitdiff
path: root/git-shell-commands/change-description
diff options
context:
space:
mode:
Diffstat (limited to 'git-shell-commands/change-description')
-rwxr-xr-xgit-shell-commands/change-description12
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 $?