May 26

This post show you the few needed commands to create a new branch in your colaborative repository:

  1. Clone the repository you want to branch
  2. cd repositoryname
  3. git push origin origin:refs/heads/branchname
  4. git checkout --track -b branchname origin/branchname

Related Posts