There are some files that shouldn't be tracked by Git at all. For example, the temporary files created by the text editors, the Python bytecode, and etc.
How could we ignore those files? In the previous post, I have mentioned
that we can create a .gitignore
file and list the …