From 4f84f8c5b22bc6279669fa37e847d2cda209fee5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Tue, 31 Jul 2012 17:43:18 -0300 Subject: Git commands to add new repos and change descriptions, symlink to ~/git-shell-commands --- git-shell-commands/change-description | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 git-shell-commands/change-description (limited to 'git-shell-commands/change-description') 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 $? -- cgit v1.2.3