summaryrefslogtreecommitdiff
path: root/.config/git/configure.sh
blob: 523b9378c5cbea8e5b5556e993ba7e382c47abef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

do_echo() {
	echo $@
	eval $@
}

do_echo git config --global branch.master.remote origin
do_echo git config --global branch.master.merge refs/heads/master

do_echo git config --global user.name ben
do_echo git config --global user.email benjaminfranzke@googlemail.com