.gitignore 523 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Default folder where the git repos are located
  2. repos/
  3. forks/
  4. tickets/
  5. docs/
  6. requests/
  7. releases/
  8. remotes/
  9. pagure_env/
  10. # Other python/editor specific files to ignore
  11. dist/
  12. build/
  13. *.pyc
  14. *.pyo
  15. *.swp
  16. *.egg-info
  17. *.conf
  18. .coverage
  19. _build/
  20. # Just a local folder I use for testing
  21. clones/
  22. # IdeaIDE
  23. .idea/
  24. # Ignore the git repos in unit tests
  25. tests/*.git
  26. # Don't track alembic.ini
  27. alembic.ini
  28. # Don't track the virtualenv we tell developers to use
  29. pagure_env/
  30. # Ignore the Vagrantfile
  31. Vagrantfile
  32. .dnf-cache
  33. *.retry
  34. .vagrant