removed unnecessary git checkout for bug, feature and refactor

This commit is contained in:
Greg Allen 2013-03-07 17:44:11 -08:00
parent d8492e68eb
commit a79c51c7ad
3 changed files with 0 additions and 3 deletions

View file

@ -8,5 +8,4 @@ else
test -z $1 && echo "bug <name> required." && exit 1
branch=bug/$1
git checkout -b $branch &> /dev/null
git checkout $branch &> /dev/null
fi

View file

@ -8,5 +8,4 @@ else
test -z $1 && echo "feature <name> required." 1>&2 && exit 1
branch=feature/$1
git checkout -b $branch &> /dev/null
git checkout $branch &> /dev/null
fi

View file

@ -8,5 +8,4 @@ else
test -z $1 && echo "refactor <name> required." 1>&2 && exit 1
branch=refactor/$1
git checkout -b $branch &> /dev/null
git checkout $branch &> /dev/null
fi