summaryrefslogtreecommitdiff
path: root/git-shell-commands/change-owner
blob: 41bf22bd6d5674f508568eaac745508901c952ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# * change-owner
#   Define quién manda
#   ssh git@host change-owner repo "Hacklab"

set -e

repo=$1; shift

git config -f "${repo}/config" "gitweb.owner" "${@}"

exit $?