Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.npmignore 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. //this will affect all the git repos
  2. git config --global core.excludesfile ~/.gitignore
  3. //update files since .ignore won't if already tracked
  4. git rm --cached <file>
  5. # Compiled source #
  6. ###################
  7. *.com
  8. *.class
  9. *.dll
  10. *.exe
  11. *.o
  12. *.so
  13. # Packages #
  14. ############
  15. # it's better to unpack these files and commit the raw source
  16. # git has its own built in compression methods
  17. *.7z
  18. *.dmg
  19. *.gz
  20. *.iso
  21. *.jar
  22. *.rar
  23. *.tar
  24. *.zip
  25. # Logs and databases #
  26. ######################
  27. *.log
  28. *.sql
  29. *.sqlite
  30. # OS generated files #
  31. ######################
  32. .DS_Store
  33. .DS_Store?
  34. ._*
  35. .Spotlight-V100
  36. .Trashes
  37. # Icon?
  38. ehthumbs.db
  39. Thumbs.db
  40. .cache
  41. .project
  42. .settings
  43. .tmproj
  44. *.esproj
  45. nbproject
  46. # Numerous always-ignore extensions #
  47. #####################################
  48. *.diff
  49. *.err
  50. *.orig
  51. *.rej
  52. *.swn
  53. *.swo
  54. *.swp
  55. *.vi
  56. *~
  57. *.sass-cache
  58. *.grunt
  59. *.tmp
  60. # Dreamweaver added files #
  61. ###########################
  62. _notes
  63. dwsync.xml
  64. # Komodo #
  65. ###########################
  66. *.komodoproject
  67. .komodotools
  68. # Node #
  69. #####################
  70. node_modules
  71. # Bower #
  72. #####################
  73. bower_components
  74. # Folders to ignore #
  75. #####################
  76. .hg
  77. .svn
  78. .CVS
  79. intermediate
  80. publish
  81. .idea
  82. .graphics
  83. _test
  84. _archive
  85. uploads
  86. tmp
  87. # Vim files to ignore #
  88. #######################
  89. .VimballRecord
  90. .netrwhist
  91. bundle.*
  92. _demo