Created
August 16, 2017 09:24
-
-
Save nowox/ed1bfff6dcb7a76345091c4b77d8a092 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
0 ~/test $ git init | |
Initialized empty Git repository in /cygdrive/c/Users/Ycr/Home/test/.git/ | |
0 ~/test $ cat .git/config | |
[core] | |
ignorecase = true | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
0 ~/test $ cat /usr/share/git-core/templates/config | |
[core] | |
ignorecase = false | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
0 ~/test $ diff /usr/share/git-core/templates/config .git/config | |
2,5c2,5 | |
< ignorecase = false | |
< repositoryformatversion = 0 | |
< filemode = true | |
< bare = false | |
--- | |
> ignorecase = true | |
> repositoryformatversion = 0 | |
> filemode = true | |
> bare = false | |
0 ~/test $ rm -rf .git | |
0 ~/test $ GIT_TEMPLATE_DIR=/usr/share/git-core/templates git init . | |
Initialized empty Git repository in /cygdrive/c/Users/Ycr/Home/test/.git/ | |
0 ~/test $ cat .git/config | |
[core] | |
ignorecase = true | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment