summaryrefslogtreecommitdiff
path: root/git-shell-commands/change-description
blob: c8abdabb83f248abf123e8f8205f63bcf67f661c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# * change-description
#   Allows users to change project description
#   ssh git@host change-description repo "description"

set -e

repo=$1; shift

echo "${@}" > ${repo}.git/description

exit $?