can i create a branch inside of another branch in GIT

C++
$ git push origin dev
$ git push origin myFeature
$ git checkout -b myFeature dev
$ git checkout dev
$ git merge --no-ff myFeature
$ git commit -am "Your message"

Source

Also in C++: