Merge pull request #169 from jgallen23/bug/index-lock

removed unnecessary git checkout for bug, feature and refactor
This commit is contained in:
TJ Holowaychuk 2013-05-15 09:56:51 -07:00
commit fe584f631d
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