fixes anthony's comment about not working if you aren't switching branches

This commit is contained in:
Jesse Andrews 2011-10-16 19:08:04 -07:00
parent aa8bb244be
commit 64c2ba225a

View file

@ -301,8 +301,9 @@ function git_clone {
cd $2
git remote set-url origin $1
git fetch origin
git checkout origin/$3
git branch -D $3
git checkout $3
git checkout -b $3
fi
}