I have two branchs production and master .
in the master branch i create an svg image (icon.svg) with i lower case, i committed that icon.svg then push to Gitlab, then another developer create another image with Icon.svg same name same image but with I upperCase then he commited that image in production branch.
when he try to do a reabse of his branch to the master branch he do a git pull rebase in this way : (git pull origin master --rebase
)
it gives us Icon.svg unstaged and the D symbol for deleted
a solution that I proposed to delete the icone.svg in the master and commit ..
but that solution doesn't work it gives us the same problem in every rebase
How we can solve this problem, thank you for your help