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

Simple automatic merge

$ git checkout master
  • see that the changes have "disappeared"
  • make some other change on the master to README.txt
  • see that the two have diverged (use gitk)
  • merge the feature into master
$ git merge featurex
Merge made by the 'recursive' strategy.
 app.pl |    1 +
 1 file changed, 1 insertion(+)

$ gitk --all