.gitignore 659 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # generic files to ignore
  2. .*
  3. # python temp paths
  4. __pycache__/
  5. *.py[cod]
  6. # editors
  7. *~
  8. *.swp
  9. *.swo
  10. *#
  11. # Indexes for emacs, vi & others
  12. TAGS
  13. tags
  14. # QtCreator
  15. CMakeLists.txt.user
  16. # ms-windows
  17. Thumbs.db
  18. ehthumbs.db
  19. Desktop.ini
  20. # commonly used paths in blender
  21. /blender.bin
  22. /BUILD_NOTES.txt
  23. build_files/build_environment/BUILD_NOTES.txt
  24. # local patches
  25. /*.patch
  26. /*.diff
  27. # in-source doc-gen
  28. /doc/doxygen/html/
  29. /doc/python_api/sphinx-in-tmp/
  30. /doc/python_api/sphinx-in/
  31. /doc/python_api/sphinx-out/
  32. /doc/python_api/rst/bmesh.ops.rst
  33. # in-source lib downloads
  34. /build_files/build_environment/downloads
  35. # in-source GTAGS databases
  36. GPATH
  37. GRTAGS
  38. GTAGS
  39. CMakeFiles/