git command to create a branch from another branch

Shell
$ git checkout -b myFeature dev//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev$ git checkout -b myfeature dev

Source

Also in Shell: