From a79c51c7ad7067d55db8dcad3d4f451c550e5a80 Mon Sep 17 00:00:00 2001 From: Greg Allen Date: Thu, 7 Mar 2013 17:44:11 -0800 Subject: [PATCH] removed unnecessary git checkout for bug, feature and refactor --- bin/git-bug | 1 - bin/git-feature | 1 - bin/git-refactor | 1 - 3 files changed, 3 deletions(-) diff --git a/bin/git-bug b/bin/git-bug index d46b93e..4ce5437 100755 --- a/bin/git-bug +++ b/bin/git-bug @@ -8,5 +8,4 @@ else test -z $1 && echo "bug required." && exit 1 branch=bug/$1 git checkout -b $branch &> /dev/null - git checkout $branch &> /dev/null fi diff --git a/bin/git-feature b/bin/git-feature index aa33d9d..29aacd0 100755 --- a/bin/git-feature +++ b/bin/git-feature @@ -8,5 +8,4 @@ else test -z $1 && echo "feature required." 1>&2 && exit 1 branch=feature/$1 git checkout -b $branch &> /dev/null - git checkout $branch &> /dev/null fi diff --git a/bin/git-refactor b/bin/git-refactor index 2b50fc4..e87143a 100755 --- a/bin/git-refactor +++ b/bin/git-refactor @@ -8,5 +8,4 @@ else test -z $1 && echo "refactor required." 1>&2 && exit 1 branch=refactor/$1 git checkout -b $branch &> /dev/null - git checkout $branch &> /dev/null fi