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

Remote branch

$ git branch
$ git branch --remote
$ git branch --all

$ git config --global push.default  simple

$ git co -b feature

$ git push -u origin feature

$ git fetch
$ git co feature
$ git merge origin/feature
$ git push

$ git push origin --delete feature

# older version:
$ git push origin :feature