Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Shared feature branch

A: $ git checkout -b feature
A: $ git push -u origin feature

B: $ git checkout main
B: $ git pull
B: $ git branch feature origin/feature
  • Every developer works on the “feature” branch.
  • Every developer create a small branch from the “feature”, commits there. pushes it out. Send PR to the feature.