I’m working on a django project with a few other developers and we have recently realized that all the .pwc files in our app cause the commits and repository to be cluttered.
Is there any way I can remove all .pwc files from all child directories in my git repository and then ignore them for any future commit?
Plenty of ways to remove them:
Note: If you haven’t committed them, just use
rm, notgit rm.To ignore them in the future, simply add *.pwc to the .gitignore. (If you don’t have one, create a file named .gitignore at the top level of your repository, and just add a single line saying “*.pwc”)