How do I commit case-sensitive only filename changes in Git?

前端 未结 16 2586
我在风中等你
我在风中等你 2020-11-22 03:31

I have changed a few files name by de-capitalize the first letter, as in Name.jpg to name.jpg. Git does not recognize this changes and I had to de

16条回答
  •  面向向阳花
    2020-11-22 04:08

    I used those following steps:

    git rm -r --cached .
    git add --all .
    git commit -a -m "Versioning untracked files"
    git push origin master
    

    For me is a simple solution

提交回复
热议问题