summaryrefslogtreecommitdiff
path: root/scripts/git-config
blob: bad9a0beb5bb50fb6f97c180a575425f504f0c2f (plain) (blame)
1
2
3
4
5
6
#!/bin/sh
[ -z $2 ] && echo 'Usage: ./scripts/git-config <name> <email>'
[ -z $2 ] && exit 1

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