Is git not case sensitive?

后端 未结 6 1156
醉酒成梦
醉酒成梦 2020-12-04 06:32

In the first commitment of my partial called _Electronics it was written beginning with a capital letters, then I changed it to _electronics.

6条回答
  •  再見小時候
    2020-12-04 07:13

    In my scenario I had two folders tests and Tests which showed as two separate folders in Github but a single Tests folder in Windows. My aim was to combine them both into tests.

    I used the following approach:

    1. Create a new folder temp
    2. Copy all content from Tests to temp
    3. Delete Tests
    4. execute git rm Tests -r
    5. Rename temp to tests

提交回复
热议问题