Created
February 26, 2013 20:56
-
-
Save anteaya/5042100 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$ git status | |
# On branch master | |
nothing to commit (working directory clean) | |
$ git merge feature | |
Merge made by the 'recursive' strategy. | |
second_file.txt | 1 + | |
1 file changed, 1 insertion(+) | |
create mode 100644 second_file.txt | |
[anita@anita-fedora git_sample]$ tree .git | |
.git | |
├── branches | |
├── COMMIT_EDITMSG | |
├── config | |
├── HEAD | |
├── index | |
├── logs | |
│ ├── HEAD | |
│ └── refs | |
│ └── heads | |
│ ├── feature | |
│ └── master | |
├── objects | |
│ ├── 17 | |
│ │ └── 7a4cbfdfc72694f4b93cb863ad6b97961943ae | |
│ ├── 44 | |
│ │ └── 10ed47ea8a5200397d85926fe7bbdd25d1408a | |
│ ├── 52 | |
│ │ └── 63fb5116b5582e7cd202899a30a7e5814ec05f | |
│ ├── 54 | |
│ │ └── ae9fb817ee985eeadb149c95820a2c85a53a26 | |
│ ├── 5a | |
│ │ └── 9d71e4630c9c36e21c7e1f6b35fc82a3d6ad21 | |
│ ├── 67 | |
│ │ └── e26e3a61f8238d9a97f4b0f4f771a92402ad3e | |
│ ├── 6e | |
│ │ └── b298f9c5858291ac817dca4238957b628e7200 | |
│ ├── 9e | |
│ │ └── 23edf161fbc472371db34934f098709999c9f6 | |
│ ├── b9 | |
│ │ └── 95a54a743021e4645221f4b6242cdad32590bd | |
│ ├── d5 | |
│ │ └── 61f82d45e267593220296ac3e956e47a98717f | |
│ ├── ed | |
│ │ └── c4bc271061087657dbeb4e56970da8c84f4ac6 | |
│ ├── info | |
│ └── pack | |
├── ORIG_HEAD | |
└── refs | |
├── heads | |
│ ├── feature | |
│ └── master | |
└── tags | |
21 directories, 21 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment