Today I built a solution that used the name of a file as an id
, which (where used) is case-sensitive. At first I committed the file as dailyscores.json
but after committed and pushed, I renamed it to dailyScores.json
. Now, to get this change to be picked up, and correctly named when checked out on another computer, I used the following “command” before committing and pushing:
git mv --force dailyscores.json dailyScores.json
Hope it helps,
//Daniel