view scripts/git-config @ 1165:6395f11f9649 draft

Merge git://1.41.41.1/
author Ivo Smits <Ivo@UCIS.nl>
date Tue, 18 Mar 2014 00:05:14 +0100
parents c3e4b6c83537
children 2f57d4d36759
line wrap: on
line source

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