How do I omit certain files from the `git status` report? -


I am using GIT and developing in Python (although it is clearly relevant to any other data managed with GIT).

How do I tell the git, I .pyc Do not want to see / code?

Add to file .gitignore the following line:

  *. See Pyc  

.


Comments