#!/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 $?