I get the following message when I clone a project in my Mac:
Cloning into 'cinetogoproject'...
remote: Counting objects: 3863, done.
remote: Compressing objects: 100% (2777/2777), done.
remote: Total 3863 (delta 1203), reused 2940 (delta 762)
Receiving objects: 100% (3863/3863), 152.22 MiB | 3.12 MiB/s, done.
Resolving deltas: 100% (1203/1203), done.
Updating files: 100% (3109/3109), done.
warning: the following paths have collided (e.g. case-sensitive paths
on a case-insensitive filesystem) and only one from the same
colliding group is in the working tree:
'frontend/dir1/source/src/dir2/Functions/index.js'
'frontend/dir1/source/src/dir2/functions/index.js'
It might sound similar to this question, but my case is different because one of the colliding directories does not exist!
The problem arised because I renamed directory functions
to Functions
expecting git to manage the change normally, but the change is colliding with commits from other programmers when pulling.
Now, merge conflicts are reported and I am able to solve them... but git solves them for functions
, that doesn't exist, and remain unsolvable for Functions
, that does exist, even when the file contains no merging conflicts already.
Is there any wat to fix this?