gitignore: Ignore __pycache__ directory

Unfortunately running Python scripts causes this directory to
be created in the *source* tree, and there doesn't seem to be
a way to prevent that from happening.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
Andrea Bolognani 2021-03-19 14:27:28 +01:00
parent 792843c05e
commit 6739736786

3
.gitignore vendored
View File

@ -13,6 +13,9 @@
*.orig *.orig
.git-module-status .git-module-status
# python related ignores
__pycache__/
# libvirt related ignores # libvirt related ignores
/build/ /build/
/ci/scratch/ /ci/scratch/