Make git case sensitive.

This commit is contained in:
Hemanth.HM 2016-01-31 20:58:17 +05:30
parent dfc0613a78
commit f4b8b94f59
2 changed files with 9 additions and 0 deletions

View File

@ -77,6 +77,7 @@
* [Restore deleted file.](https://github.com/git-tips/tips#restore-deleted-file)
* [Always rebase instead of merge on pull.](https://github.com/git-tips/tips#always-rebase-instead-of-merge-on-pull)
* [List all the alias and configs.](https://github.com/git-tips/tips#list-all-the-alias-and-configs)
* [Make git case sensitive.](https://github.com/git-tips/tips#make-git-case-sensitive)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -533,5 +534,10 @@ git config --global branch.autosetuprebase always
git config --list
```
## Make git case sensitive.
```sh
git config --global core.ignorecase false
```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end -->

View File

@ -234,4 +234,7 @@
}, {
"title": "List all the alias and configs.",
"tip": "git config --list"
}, {
"title": "Make git case sensitive.",
"tip": "git config --global core.ignorecase false"
}]