.gitignore 1013 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. # Common "beeswaxd" product
  36. /metastore_db
  37. /derby.log
  38. # Nose --with-id's file
  39. /.noseids
  40. # Coverage product
  41. /.coverage
  42. /coverage.xml
  43. # Common utility alias
  44. /d
  45. # Intellij project files
  46. .idea/
  47. *.iml
  48. # Database of running server
  49. desktop/desktop.db
  50. app.reg
  51. # logs
  52. /logs
  53. desktop/logs
  54. # Maven's target directory
  55. target
  56. # Maven's dependency reduced pom
  57. desktop/libs/hadoop/java/dependency-reduced-pom.xml
  58. # Reviewboard config file
  59. .reviewboardrc