git command tocommit files to develop branch code example
Example 1: git branch and checkout at the same time
$ git checkout -b <branch_name>
Example 2: how to commit a branch in git
git commit -m "added my github name"
$ git checkout -b <branch_name>
git commit -m "added my github name"