Let's say I'm cloning a repo on a case-insensitive filesystem (i.e. Mac OS X). If the repo contains a case-only rename, the file seems to disappear entirely.
My guess is that README.txt was added before ReadMe.txt was deleted, but the filesystem's case-folding broke it. It could probably be fixed by processing deleted files before added files.
Let's say I'm cloning a repo on a case-insensitive filesystem (i.e. Mac OS X). If the repo contains a case-only rename, the file seems to disappear entirely.
Example repo: https://bitbucket.org/ronaldoussoren/altgraph Case-only rename (ReadMe.txt -> README.txt): https://bitbucket.org/ronaldoussoren/altgraph/commits/d5b57fd29a646d7f70384b067f0f218a7bdcaf83
My guess is that README.txt was added before ReadMe.txt was deleted, but the filesystem's case-folding broke it. It could probably be fixed by processing deleted files before added files.