git create remote branch 2017-06-10 01:27

You can use these commands to create a new branch locally and push it to remote.

create new branch in local

git checkout -b <branch>

push branch to remote

git push -u origin <branch>

EOF