Skip to content

Commit

Permalink
Merge pull request #263 from Yitsushi/bug/180-does-not-check-out-bran…
Browse files Browse the repository at this point in the history
…ch-if-it-already-exists

fix #180 and #232 feature|bug|refactor checkout.
  • Loading branch information
hemanth committed Oct 7, 2014
2 parents b6968af + b9478d6 commit daf0c0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions bin/git-bug
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ else
fi
branch=bug/$1
git checkout -b $branch &> /dev/null
test -n $? && git checkout $branch &> /dev/null
fi
1 change: 1 addition & 0 deletions bin/git-feature
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ else
fi
branch=feature/$1
git checkout -b $branch &> /dev/null
test -n $? && git checkout $branch &> /dev/null
fi
1 change: 1 addition & 0 deletions bin/git-refactor
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ else
fi
branch=refactor/$1
git checkout -b $branch &> /dev/null
test -n $? && git checkout $branch &> /dev/null
fi

0 comments on commit daf0c0c

Please sign in to comment.