create a new branch based on another branch
//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature devcreate a new branch based on another branch
//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature devcreate branch from another branch
$ git checkout -b myFeature devhow to create new branch
How to create a new branch in git 
$ git checkout -b good
here good is new branch name
the line 3 after executing we will go to that branchgit command to create a branch from another branch
$ git checkout -b myfeature devcreate a new branch based on another branch
git checkout -b subbranch_of_branch1 branch1Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
