Description of the problem
I have config.codekit listed inside my project's .gitignore file, but changes to config.codekit are still tracked by git.
Steps to reproduce the problem
- create a new project, initialize git, and add the project to CodeKit
- make the first commit
- add
config.codekitto the project's.gitignorefile - do
$ git statusand see that.gitignoreis listed under Changes not staged for commit, as expected - (optionally commit again here, but the problem persists even without committing)
- affect
config.codekitby opening CodeKit and changing project settings, such as adding a directory to Skipped Items & Paths. alternatively you can manually edit or even deleteconfig.codekit - Open
config.codekit(if it hasn't been deleted) and mentally note the changes made - do
$ git statusand see that, along with.gitignore,config.codekitis listed under Changes not staged for commit.
Expected result
config.codekit should not be listed anywhere when checking git status.