.gitignore 899 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # OS X nonsense
  2. .DS_Store
  3. ._*
  4. # Python compiled files
  5. *.pyc
  6. *.pyo
  7. # Language compiled files
  8. *.mo
  9. # vim tmp files
  10. .*.swp
  11. .*.swo
  12. # emacs backup files
  13. .*~
  14. # Build directory and environment
  15. build
  16. env
  17. metastore_db
  18. VERSION_INFO
  19. # Generated configuration
  20. desktop/conf/*.ini
  21. # ctags file
  22. tags
  23. TAGS
  24. # Third party build files
  25. *.egg-info/
  26. dist/
  27. # Include top level distribution dir
  28. !/dist/
  29. # Crepo fetched them
  30. ext/thirdparty/js/art-widgets/
  31. ext/thirdparty/js/mootools-table/
  32. ext/thirdparty/js/jframe/
  33. # Make product
  34. desktop/core/ext-py/lxml/src/lxml/lxml-version.h
  35. /VERSION_DATA
  36. # Common "beeswaxd" product
  37. /metastore_db
  38. /derby.log
  39. # Nose --with-id's file
  40. /.noseids
  41. # Coverage product
  42. /.coverage
  43. /coverage.xml
  44. # Common utility alias
  45. /d
  46. # Intellij project files
  47. .idea/
  48. *.iml
  49. # Database of running server
  50. desktop/desktop.db
  51. app.reg
  52. # logs
  53. /logs
  54. desktop/logs
  55. # Maven's target directory
  56. target