Cabang dari Cabang Lain
// Go first to the branch where you want to make a copy of
git checkout -b subbranch branch
Vin the fish
// Go first to the branch where you want to make a copy of
git checkout -b subbranch branch
//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev
$ git checkout -b myFeature dev
$ git checkout -b myfeature dev
git checkout -b subbranch_of_branch1 branch1
$ git push origin dev
$ git push origin myFeature