From: Andreas Eversberg Date: Sat, 16 Jan 2010 10:30:15 +0000 (+0100) Subject: new file: checkout-branch.sh X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=commitdiff_plain;h=fa7af7ab195346b11a0bb401050d7c06f4a3ffaa new file: checkout-branch.sh --- diff --git a/checkout-branch.sh b/checkout-branch.sh new file mode 100644 index 0000000..cdb9ab4 --- /dev/null +++ b/checkout-branch.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +#checks out the given branch + +if [ "$1" = "" ] ; then + echo "please provide one of the branch names:" + git branch -a + exit +fi + +git checkout -b $1 origin/$1 +git config branch.$1.remote origin +git config branch.$1.merge refs/heads/$1 +