Branchs

To watch branches join and grow

  1. Create a new branch to isolate changes from the master branch

    git branch + "name-branch"
  2. Go to last branch:

    git checkout + "name-branch"
  3. See what branch we’re currently in.

    git branch
  4. Merge the experimental branch into master

    git merge + "name-branch"
  5. Show all branches of the project

    git log --oneline --graph --all
  6. Delete a Branch

    git checkout -d + "name-branch"

✨ Ready.