This page is for quick Git tips and tricks and basic resources.
Git resources
- Git for Designers (a thorough from-the-top introduction that's good for non-designers, too.
- Git fo the lazy (using Git for yourself)
- Git quick tips: http://gitready.com/
- Git deeper knowledge: http://progit.org/book/
- Creating Patches for Drupal Projects from co-author Jacine Luisi
- Think Like a Git
- For Git/Drupal help see the IRC channel on freenode.net #drupal-gitsupport
Quick Git Tips
Complete git log
git log --decorate
Minimal overview of git history, one line per commit
git log --oneline
Search for a commit
git log -g --grep=search_string
See a particular commit
To simply view a given commit, you want the "git show" command:git show cb64d08