Created
February 26, 2013 20:58
-
-
Save anteaya/5042130 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat .git/ORIG_HEAD | |
6eb298f9c5858291ac817dca4238957b628e7200 | |
$ cat .git/refs/heads/master | |
67e26e3a61f8238d9a97f4b0f4f771a92402ad3e | |
$ 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 | |
edc4bc271061087657dbeb4e56970da8c84f4ac6 d561f82d45e267593220296ac3e956e47a98717f Anita Kuno <[email protected]> 1361889352 -0500 checkout: moving from feature to master | |
d561f82d45e267593220296ac3e956e47a98717f 6eb298f9c5858291ac817dca4238957b628e7200 Anita Kuno <[email protected]> 1361889429 -0500 commit: Adding my third file. I am adding it to the master branch. This will be my second commit to the master branch. | |
6eb298f9c5858291ac817dca4238957b628e7200 67e26e3a61f8238d9a97f4b0f4f771a92402ad3e Anita Kuno <[email protected]> 1361889901 -0500 merge feature: Merge made by the 'recursive' strategy. | |
$ cat .git/logs/refs/heads/master | |
0000000000000000000000000000000000000000 d561f82d45e267593220296ac3e956e47a98717f Anita Kuno <[email protected]> 1361885197 -0500 commit (initial): adding my first file | |
d561f82d45e267593220296ac3e956e47a98717f 6eb298f9c5858291ac817dca4238957b628e7200 Anita Kuno <[email protected]> 1361889429 -0500 commit: Adding my third file. I am adding it to the master branch. This will be my second commit to the master branch. | |
6eb298f9c5858291ac817dca4238957b628e7200 67e26e3a61f8238d9a97f4b0f4f771a92402ad3e Anita Kuno <[email protected]> 1361889901 -0500 merge feature: Merge made by the 'recursive' strategy. | |
$ 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