cachaito
5/10/2016 - 8:10 AM

Creating new branch

  1. First, you must create your branch locally

git checkout -b your_branch

  1. After that, you can work locally in your branch, when you are ready to share the branch, push it. The next command push the branch to the remote repository origin and tracks it

git push -u origin your_branch