.gitignore 790 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Default folder where the git repos are located
  2. repos/
  3. forks/
  4. tickets/
  5. docs/
  6. requests/
  7. releases/
  8. remotes/
  9. lcl/
  10. pagure_env/
  11. # Other python/editor specific files to ignore
  12. dist/
  13. build/
  14. *.pyc
  15. *.pyo
  16. *.swp
  17. *.egg-info
  18. *.conf
  19. .coverage
  20. # Ignore files generated by run_ci_tests
  21. pep8.out
  22. pylint.out
  23. coverage.xml
  24. pagureenv-*
  25. worker.log
  26. _build/
  27. results/
  28. # Just a local folder I use for testing
  29. clones/
  30. # IdeaIDE
  31. .idea/
  32. # Ignore the git repos in unit tests
  33. tests/*.git
  34. # Don't track alembic.ini
  35. alembic.ini
  36. # Don't track the virtualenv we tell developers to use
  37. pagure_env/
  38. # Ignore the Vagrantfile
  39. Vagrantfile
  40. .dnf-cache
  41. *.retry
  42. .vagrant
  43. #Ignore generated dockerfile
  44. dev/docker/test_env
  45. # Tox virtualenvs
  46. .tox
  47. # A possible symlink for the testsuite
  48. /repospanner
  49. /repobridge
  50. /repohookrunner