Link
Embed
Share
Beginning
This slide
Copy link URL
Copy link URL
Copy iframe embed code
Copy iframe embed code
Copy javascript embed code
Copy javascript embed code
Share
Tweet
Share
Tweet
Slide 1
Slide 1 text
FINDING THINGS IN GIT Searching, Logging, Bisecting And Pickaxing
Slide 2
Slide 2 text
Finding Things in Git
Slide 3
Slide 3 text
git log
Slide 4
Slide 4 text
Code Changes
Slide 5
Slide 5 text
git log -S
Slide 6
Slide 6 text
git log -G
Slide 7
Slide 7 text
People
Slide 8
Slide 8 text
git log --author="Matthew"
Slide 9
Slide 9 text
git log --committer="Matthew"
Slide 10
Slide 10 text
Filenames & Status
Slide 11
Slide 11 text
git log -- <filename>
Slide 12
Slide 12 text
git log --follow -- <filename>
Slide 13
Slide 13 text
git log --diff-filter=M
Slide 14
Slide 14 text
Messages
Slide 15
Slide 15 text
git log --grep=
Slide 16
Slide 16 text
Dates
Slide 17
Slide 17 text
git log --before=
Slide 18
Slide 18 text
git log --after=
Slide 19
Slide 19 text
Boolean
Slide 20
Slide 20 text
git log --not --grep=
Slide 21
Slide 21 text
File Contents
Slide 22
Slide 22 text
git blame <filename>
Slide 23
Slide 23 text
git blame -C <filename>
Slide 24
Slide 24 text
Config
Slide 25
Slide 25 text
git config --get-regexp 'alias*'
Slide 26
Slide 26 text
Ignored Files
Slide 27
Slide 27 text
git clean -ndX
Slide 28
Slide 28 text
git ls-files --others --ignored --exclude-standard
Slide 29
Slide 29 text
Orphans
Slide 30
Slide 30 text
gitk --all `git reflog | cut -c1-7`&
Slide 31
Slide 31 text
git --pretty=oneline --abbrev-commit --graph --decorate `git reflog | cut -c1-7`
Slide 32
Slide 32 text
Bisect
Slide 33
Slide 33 text
git bisect start git bisect bad git bisect good git bisect run
Slide 34
Slide 34 text
Searching in GitHUB
Slide 35
Slide 35 text
Site Search https://github.com/search
Slide 36
Slide 36 text
Repo Search https://github.com/matthewmccullough/hellogitworld/
Slide 37
Slide 37 text
Closing and Q&A
Slide 38
Slide 38 text
[email protected]
Slide 39
Slide 39 text
github.com/training/free
Slide 40
Slide 40 text
FINDING THINGS IN GIT Searching, Logging, Bisecting And Pickaxing