34

I see that with python 3, there is a __pycache__ in each subfolder of my application and of course *.pyc files will be created there as well. In my .gitignore of my app's root folder, can I simply place:

**/__pycache__
**/*.pyc

to have these ignored in all future subfolders created? Or do I need to place a .gitignore in each and every subfolder ?

On a related note, how do I check what all is being untracked (ignored). I tried "git status -u" and it does not show __pycache__ or .pyc files as being untracked.

phd
  • 69,888
  • 11
  • 97
  • 133
G.A.
  • 1,373
  • 2
  • 21
  • 32
  • 2
    To see if a file is ignored, and if so, why, use `git check-ignore -v`. Note that a file that is already in the index is tracked, regardless of whether it might match a `.gitignore` directive; see the `--no-index` option as well. The `git check-ignore` command first appeared in Git version 1.8.2. – torek Jul 30 '18 at 05:00

1 Answers1

66

You should not need the **/:

 __pycache__/
 *.pyc

That should be enough.

See for instance gitignore.io/python.
Note the practice of adding a trailing / to ignore specifically a folder.

Use git check-ignore -v -- afile (that I mentioned in Sept. 2013, with Git 1.8.2+) to check which rule ignores a file.
If the folder was already tracked:

git rm --cached -r __pycache__/

André Duarte adds in the comments:

After adjusting gitignore, I had to do this for every file, so I call awk for help:

git status | grep pycache | awk '{print $3}' | xargs git reset HEAD
Community
  • 1
  • 1
VonC
  • 1,129,465
  • 480
  • 4,036
  • 4,755