Say I'm developing a branch and I need to make an urgent fix, so usually I need
# on develop git checkout master git checkout -b bugfix/blah
but is it possible to hang without a jump to first master
# on develop git checkout -b bugfix/blah --from master
I think you are talking about it.
git checkout -b bugfix/blah master