Today I started reading the book Pro Git written by Scott Chacon and Ben Straub.
I’ll put my notes here as I go.
Git in the Command Line
Here I’ll put the git command line that appeared in the book for future indexing.
Chapter 1
$ git config --list --show-origin
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
$ git config --global user.name "John Doe"
$ git config user.name
$ git help <verb>
$ git <verb> --help
$ man git-<verb>
$ git add -h