Skip to content

Commit

Permalink
Merge pull request tj#169 from jgallen23/bug/index-lock
Browse files Browse the repository at this point in the history
removed unnecessary git checkout for bug, feature and refactor
  • Loading branch information
tj committed May 15, 2013
2 parents d8492e6 + a79c51c commit fe584f6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion bin/git-bug
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 0 additions & 1 deletion bin/git-feature
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 0 additions & 1 deletion bin/git-refactor
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit fe584f6

Please sign in to comment.