view scripts/git-config @ 1200:79ed5d9678a8 draft

something useless
author cathugger <cathugger@cock.li>
date Thu, 18 Jan 2018 14:12:44 +0000
parents 2f57d4d36759
children
line wrap: on
line source

#!/bin/sh
[ -z $2 ] && echo "Usage: $0 <name> <email>" >&2
[ -z $2 ] && exit 1

git config user.name $1
git config user.email $2