.gitignore 451 B

123456789101112131415161718192021222324
  1. #########################
  2. # global ignore file
  3. ########################
  4. # ignoring temporary files (left by e.g. vim)
  5. # ignoring by common IDE's used directories/files
  6. # dont ignore .rej and .orig as we want to see/clean files after conflict resolution
  7. #
  8. # for local exclude patterns please edit .git/info/exclude
  9. #
  10. *~
  11. *.bak
  12. *.idea
  13. *.project
  14. *.swp
  15. .buildpath
  16. .cache
  17. .project
  18. .session
  19. .settings
  20. .TemporaryItems
  21. .webprj
  22. nbproject
  23. /vendor/
  24. composer.lock