I am familiar with the differences between groups and actual directories in Xcode. I always create the actual folder in finder and drag it into the project, ensuring that "copy" is not checked.
When I move folders, I delete items only by reference, move them to finder, and then re-add them.
Now I am using git for the first time and found in my testing that if I delete the directory using the method described above, I cannot commit. Xcode tells me that it cannot switch to a directory because "there is no such file or directory." From what I found on the Internet, git is not notified of changes to the directory when this is done in Xcode.
How can I move files and folders using git in Xcode 4 and have a compiler and git know about movements so that I can commit?
source share