9/16 L&L, "Git" by Francois
9/16 L&L, "Git" by Francois
by francois
Content Addressable FS
SHA1
Filename
Source
objects dir
ZIP(1)
Contents
(1) Some files are saved as a pointer to a base file, and a file
delta to save space
References
Time Travel
$ git checkout @{10 minutes ago}
The RefLog
Bisect
$ git checkout <known-bad-commit>
$ git bisect start
$ git bisect bad
$ git bisect good <known-good-commit>
git selects the next commit to test
test the commit
$ git bisect <good or bad>