I have a file called Thinking.py
that I add to each of my projects that is my own personal log of what's going on in the project.
I recently created a flask and python template that I'd like to put publicly on GitHub, but I don't want it to include the Thinking.py because that contains my own personal comments.
I added Thinking.py
to my .git/info/exclude
, but when I uploaded the project to gihub, the Thinking.py
file still showed up.
Note that Thinking.py
was included in previous commits before I edited .git/info/exclude
.
How can I make it so that nothing about Thinking.py
is uploaded to GitHub, but all the changes and commits with Thinking.py
remain as they are on my computer?