Reputation: 177
I'm trying to figure out how to make my .gitignore file ignore the .c9 files generated the Cloud9 IDE. Also once I push with the gitignore changes will it automatically remove the .c9 files I have previously there? Or would I have to do it manually?
Upvotes: 0
Views: 1466
Reputation: 24159
Add a line with .c9/
to include contents of .c9
folder or add a line with .*
to ignore all hidden files starting with .
.
Modifying .gitignore
doesn't change files added to git, you need to remove them separately.
Upvotes: 2