From f4b8b94f592a1b0a298c0629e30949e4d1e4d1f5 Mon Sep 17 00:00:00 2001 From: "Hemanth.HM" Date: Sun, 31 Jan 2016 20:58:17 +0530 Subject: [PATCH] Make git case sensitive. --- README.md | 6 ++++++ tips.json | 3 +++ 2 files changed, 9 insertions(+) diff --git a/README.md b/README.md index 5ed2003..9b7e889 100644 --- a/README.md +++ b/README.md @@ -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) @@ -533,5 +534,10 @@ git config --global branch.autosetuprebase always git config --list ``` +## Make git case sensitive. +```sh +git config --global core.ignorecase false +``` + diff --git a/tips.json b/tips.json index c9a66a9..8cbd5f8 100644 --- a/tips.json +++ b/tips.json @@ -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" }]