jagi / meteor-astronomy-examples

http://astronomy.meteor.com
MIT License
18 stars 5 forks source link

Correct case of filenames and add missing form label #13

Closed sanderdatema closed 7 years ago

sanderdatema commented 7 years ago

By default git ignored renaming of files if it's just the case you change. So address.js to Address.js is ignored. And so your code couldn't find the files.

lukejagodzinski commented 7 years ago

Thanks! In deed I've renamed these files locally but git didn't detect changes. How to change this behaviour in git?

sanderdatema commented 7 years ago

There are two ways to go at this:

  1. Use git mv -f oldfilename NewFilename
  2. Use git config core.ignorecase false to have git care about case by default

Source: http://stackoverflow.com/questions/17683458/how-do-i-commit-case-sensitive-only-filename-changes-in-git

lukejagodzinski commented 7 years ago

Ok thanks :)