mirror of
https://github.com/git-tips/tips
synced 2024-11-12 22:57:08 +00:00
Make git case sensitive.
This commit is contained in:
parent
dfc0613a78
commit
f4b8b94f59
2 changed files with 9 additions and 0 deletions
|
@ -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)
|
||||
|
||||
<!-- Don’t 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
|
||||
```
|
||||
|
||||
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
|
||||
<!-- @doxie.inject end -->
|
||||
|
|
|
@ -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"
|
||||
}]
|
||||
|
|
Loading…
Reference in a new issue