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

Repeated merge

$ git checkout featurey

edit README add another line

$ git add README
$ git commit -m "another line"
$ git checkout master
$ git merge featurey

This time the merge was automatic, and it only included the changes since the previous merge.