Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While I found similar question I didn't find an answer to my problem

When I try to rename the directory from FOO to foo via git mv FOO foo I get

fatal: renaming 'FOO' failed: Invalid argument

OK. So I try git mv FOO foo2 && git mv foo2 foo

But when I try to commit via git commit . I get

# On branch master
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
# foo
nothing added to commit but untracked files present (use "git add" to track)

When I add the directory via git add foo nothing changes and git commit . gives me the same message again.

What am I doing wrong? I thought I'm using a case-sensitive system (OSX) why can't I simply rename the directory?

share|improve this question
4  
OS X's file system isn't case-sensitive. – mipadi Jun 10 '10 at 4:47
@mipadi It can operate in case-sensitive mode but that's usually off by default. – GordonM Jun 15 '12 at 12:07

4 Answers

up vote 92 down vote accepted

You are in a case insensitive environment. Further, adding with out the -A will not take care of the remove side of the mv as Git understands it. Warning! Ensure that no other changes or untracked files are around when you do this or they will get committed as part of this change! git stash -u first, do this and then git stash pop after. Continuing: To get around this, do the following:

mv foo foo2
git add -A
git commit -m "renaming"
mv foo2 FOO
git add -A
git commit --amend -m "renamed foo to FOO"
share|improve this answer
1  
Thanks. This was driving me crazy. I didn't know about the -A or the --amend option. – oschrenk Jun 10 '10 at 5:18
1  
very helpful, thank you – Allyn Jun 14 '11 at 15:59
1  
Careful with the -A, since it will recursively add all content in your current directory, including untracked stuff. Might be better to just git add foo2. – rich.e Dec 22 '12 at 4:00
That is correct. However you will need to stage both the removal of foo2 as well as the addition of FOO separately. -A takes care of both. Vice versa for the first step. I'll add the warning. Thanks! – Adam Dymitruk Dec 23 '12 at 20:00

You want to set the option core.ignorecase to false, which will make Git pay attention to case on file systems that don't natively support it. To enable in your repo:

$ git config core.ignorecase false

Then you can rename the file with git mv and it'll work as expected.

share|improve this answer
I think this may have undesirable effects elsewhere. Case insensitive systems should let Git think that it's the same dir. – Adam Dymitruk Jun 10 '10 at 5:00
2  
I added the option to my global config but it didn't help – oschrenk Jun 10 '10 at 5:20
4  
On OS X? It worked for me. – mipadi Jun 10 '10 at 11:06
1  
I see some weird behavior using this with OSX. hrm I modified a file that doesn't exist .. hrm error: The following untracked working tree files would be overwritten by checkout: but ... those files don't exist. – Skylar Saveland Aug 26 '11 at 15:04

I was able to resolve this, using git 1.7.7 as follows:

$ git mv improper_Case improve_case2
$ git mv improper_case2 improve_case
$ git commit -m "<your message>"
share|improve this answer
Interesting. Maybe GIT improved something since then. When I'll stumble upon this problem again, I'll try this again. – oschrenk May 29 '12 at 12:04
much easier doing it this way – olore Jul 17 '12 at 22:04

You're not using a case-sensitive filesystem in OS X unless you explicitly choose such. HFS+ can be case-sensitive, but the default is case-insensitive.

share|improve this answer
2  
Using the case-sensitive file system on OS X is not a good idea. A lot of apps do NOT work correctly, I learned from trying this. One particular problem is that Adobe Photoshop will refuse to install saying that case-sensitive file system is not supported. – orange80 Sep 9 '11 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.