12345678910111213141516171819202122232425262728293031323334353637383940 |
- # Default folder where the git repos are located
- repos/
- forks/
- tickets/
- docs/
- requests/
- releases/
- remotes/
- pagure_env/
- # Other python/editor specific files to ignore
- dist/
- build/
- *.pyc
- *.pyo
- *.swp
- *.egg-info
- *.conf
- .coverage
- _build/
- # Just a local folder I use for testing
- clones/
- # IdeaIDE
- .idea/
- # Ignore the git repos in unit tests
- tests/*.git
- # Don't track alembic.ini
- alembic.ini
- # Don't track the virtualenv we tell developers to use
- pagure_env/
- # Ignore the Vagrantfile
- Vagrantfile
- .dnf-cache
- *.retry
- .vagrant
|