.gitignore 610 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. # Ignore files generated by run_ci_tests
  20. pep8.out
  21. pylint.out
  22. coverage.xml
  23. pagureenv-*
  24. _build/
  25. # Just a local folder I use for testing
  26. clones/
  27. # IdeaIDE
  28. .idea/
  29. # Ignore the git repos in unit tests
  30. tests/*.git
  31. # Don't track alembic.ini
  32. alembic.ini
  33. # Don't track the virtualenv we tell developers to use
  34. pagure_env/
  35. # Ignore the Vagrantfile
  36. Vagrantfile
  37. .dnf-cache
  38. *.retry
  39. .vagrant