Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Create a Branch

Rafael Belchior edited this page Sep 8, 2018 · 1 revision

After you forked the repository, cloned it and added the remote from the GCE repository, it's time to create a branch referring to one and only one task that you will perform.

git checkout -b <branch-name> # Create a new branch and check it out (change to it).

If you are working on documentation, the branch-name could be docs

Example: $ git checkout -b docs or $ git checkout -b docs-readme

Congrats. Now you are working on one functionality only, with the code isolated from the develop branch. Time to code!

Clone this wiki locally