Gitignore Issue
Description
Git Was not ignoring __pycache__
even though I had it set in .gitignore
To Resolve:
-
Originally read this which didn’t seem to help.
-
Then I ran the following per this article and it worked:
1 2 3
git rm -r --cached . git add . git commit -m ".gitignore Fixed"
Comments