Is it possible git to separate the master from another in another branch?

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
+4
source share
1 answer

I think you are talking about it.

git checkout -b bugfix/blah master
+6
source

All Articles