Skip to content

Instantly share code, notes, and snippets.

@anteaya
Created February 26, 2013 20:43
Show Gist options
  • Save anteaya/5041995 to your computer and use it in GitHub Desktop.
Save anteaya/5041995 to your computer and use it in GitHub Desktop.
$ cat .git/refs/heads/master
d561f82d45e267593220296ac3e956e47a98717f
$ cat .git/refs/heads/feature
edc4bc271061087657dbeb4e56970da8c84f4ac6
$ cat .git/logs/HEAD
0000000000000000000000000000000000000000 d561f82d45e267593220296ac3e956e47a98717f Anita Kuno <[email protected]> 1361885197 -0500 commit (initial): adding my first file
d561f82d45e267593220296ac3e956e47a98717f d561f82d45e267593220296ac3e956e47a98717f Anita Kuno <[email protected]> 1361886063 -0500 checkout: moving from master to feature
d561f82d45e267593220296ac3e956e47a98717f edc4bc271061087657dbeb4e56970da8c84f4ac6 Anita Kuno <[email protected]> 1361888950 -0500 commit: this is my second commit, made to the topic branch named feature
$ cat .git/logs/refs/heads/master
0000000000000000000000000000000000000000 d561f82d45e267593220296ac3e956e47a98717f Anita Kuno <[email protected]> 1361885197 -0500 commit (initial): adding my first file
$ cat .git/logs/refs/heads/feature
0000000000000000000000000000000000000000 d561f82d45e267593220296ac3e956e47a98717f Anita Kuno <[email protected]> 1361886063 -0500 branch: Created from HEAD
d561f82d45e267593220296ac3e956e47a98717f edc4bc271061087657dbeb4e56970da8c84f4ac6 Anita Kuno <[email protected]> 1361888950 -0500 commit: this is my second commit, made to the topic branch named feature
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment