__pycache__ files #55
-
This is what my project folder looks like at the end of Lesson 5. It's ugly and I hate it, but I'm doing some reading and I think I can deal with it. But I'm curious why I have generated all these files that did not appear in the video. EDIT: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
gitignore
is just a file that Git uses to exclude files and folders from the project tracking... since it's something that you are generating on your local device, you don't want those to be shared (for example, the.vscode
is not tracked since it's personal, and coworkers don't care about it)... at the end, everything that starts with.
(and so it's a hidden file/folder) should be ignored