Created
June 12, 2015 20:55
-
-
Save lehnerpat/85b824652f2a3db83380 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
/tmp$ git init test | |
Initialized empty Git repository in /private/tmp/test/.git/ | |
/tmp$ cd test | |
/tmp/test (master #)$ touch a b | |
/tmp/test (master #)$ ls | |
a b | |
/tmp/test (master #)$ git status -z | hexdump -C | |
00000000 3f 3f 20 61 00 3f 3f 20 62 00 |?? a.?? b.| | |
0000000a | |
/tmp/test (master #)$ git --version | |
git version 2.4.3 | |
/tmp/test (master #)$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment