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

tags

A light weight tag can be created using git tag NAME.

An annotated tag can be created using git tag -a NAME.

$ git tag v3.0
$ git tag v3.0 SHA1

$ git tag -a v3.0

$ git push --tags