Hacker News new | ask | show | jobs
by wumms 118 days ago
Also, files that are added to .gitignore after they’ve already been committed will still appear as modified. To stop tracking them, you need to remove them from the index (staging area):

    git rm --cached <file>