I’ve run into a problem with git. Basically I set to false core.ignorecase because I wanted to change the case of the names of some folders (since I’m under OSX with a case-insensitive filesystem, the changes weren’t shown otherwise). When I pulled my data, I’ve noticed that now every renamed folder appears twice on the repository, with both the old and the new name. I don’t know what to do to remove the old folders since they don’t appear locally (I’ve try to set core.ignorecase to true again but it isn’t helping).
I’ve run into a problem with git. Basically I set to false core.ignorecase because
Share
May be a workaround similar to this comment in an msysgit issue (for another case-insensitive OS: Windows) could help?
Note that since git 2.0.1 (June 2014),
git mv Folder foldershould just work!See "Git: Changing capitalization of filenames"