How to create a branch ====================== To create a branch with name :code:`` run:: $ git branch To go to that branch:: $ git checkout How to branch from a specific branch, tag or commit --------------------------------------------------- To create a branch with name :code:`` from a specific branch, tag or commit with name :code:`` run:: $ git branch How to create a branch and checkout to it at the same time ---------------------------------------------------------- You can create a branch with name :code:`` and checkout in a single command:: $ git checkout -b