When I put "git status" I get this:
main/__pycache__/wsgi.cpython-36.pyc
posting/__pycache__/views.cpython-36.pyc
I tried putting this in my .gitignore file:
main/__pycache__/
posting/__pycache__/
But, did not work
When I put "git status" I get this:
main/__pycache__/wsgi.cpython-36.pyc
posting/__pycache__/views.cpython-36.pyc
I tried putting this in my .gitignore file:
main/__pycache__/
posting/__pycache__/
But, did not work
Just add __pycache__/
to your .gitignore. It iwll then ignore all __pycache__
directories within your project.