Last active
January 19, 2020 17:22
-
-
Save constrict0r/0c922010543f2f39ade4ffe7cc8a0d52 to your computer and use it in GitHub Desktop.
Gitignore one-to-rule-all
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ansible. | |
*.retry | |
.galaxy_install_info | |
# Binaries. | |
*.jpg | |
# Buffers. | |
*~ | |
# C extensions. | |
*.so | |
# Coverage. | |
cover | |
.coverage | |
.coveralls.yml | |
htmlcov | |
# Editors. | |
.#.* | |
#.*# | |
# Emacs. | |
dconf/ | |
#* | |
~* | |
*/#* | |
*flymake.py | |
# Jupyter. | |
.ipynb_checkpoints | |
.ipython | |
.jupyter | |
.local | |
# Org Mode. | |
*~ | |
index.org | |
public/ | |
# Python. | |
build/ | |
develop-eggs | |
dist/ | |
*.egg | |
*.egg-info | |
eggs | |
.installed.cfg | |
bin | |
lib | |
lib64 | |
var | |
sdist | |
pip-log.txt | |
*.pyc | |
*.py[cod] | |
__pycache__ | |
.pytest_cache | |
.tox | |
# Sphinx. | |
build | |
# Tests generated files. | |
tests/library | |
tests/test_plugins | |
.yamllint | |
# Temporary. | |
.cache | |
# Translations. | |
.mo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment