create a sub branch git for new feature1 code example
Example 1: branch from other branch
// Go first to the branch where you want to make a copy of
git checkout -b subbranch branch
Example 2: create a new branch from existing branch in git
git checkout -b subbranch_of_b1 branch1