blob: 120b1cdc4e56bed2441bfc67ee9c0b1266d350b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Allows users to change project description
# $ ssh git@host change-description repo "description"
set -E
repo=$1; shift
echo "${@}" > ${repo}.git/description
exit $?
|