Advertisement
bananamariap

.gitignore

Jun 5th, 2017
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. # Ignore all files starting with . #
  2. .*
  3. !.bowerrc
  4. !.jshintrc
  5.  
  6.  
  7. # Ignore everything in the root except the "wp-content" directory.
  8. #/*
  9. #!wp-content/
  10.  
  11. # Ignore everything in the "wp-content" directory, except:
  12. # "plugins" directory
  13. # "themes" directory
  14. wp-content/*
  15. !wp-content/plugins/
  16. !wp-content/themes/
  17. !wp-content/uploads/
  18.  
  19. #Ignore node_modules
  20. node_modules/
  21.  
  22. #Ignore sass-cache and mapped files
  23. .sass-cache/
  24. *.css.map
  25. *.js.map
  26.  
  27.  
  28. # Ignore OS generated files #
  29. ######################
  30. .DS_Store
  31. .DS_Store?
  32. ._*
  33. .Spotlight-V100
  34. .Trashes
  35. ehthumbs.db
  36. Thumbs.db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement