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.codekit
to the project's.gitignore
file - do
$ git status
and see that.gitignore
is listed under Changes not staged for commit, as expected - (optionally commit again here, but the problem persists even without committing)
- affect
config.codekit
by 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 status
and see that, along with.gitignore
,config.codekit
is listed under Changes not staged for commit.
Expected result
config.codekit
should not be listed anywhere when checking git status.