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

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