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

Rebasing

git rebase in the Atlassian Git Tutorial has a nice overview of this command.

# Rebase the current branch by appying them to the passed branch.
git rebase <branchName>

# Continue a rebase.
git rebase --continue