summaryrefslogtreecommitdiff
path: root/git-shell-commands/change-description
blob: a4cb19750df07eefc68150fb0f076f5cfb625288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# * change-description
#   Cambia la descripcion del projecto, necesita archivo description en el proyecto
#   ssh git@host change-description repo "description"

set -e

repo=$1; shift

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

exit $?