Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. # ignore everything
  2. *
  3.  
  4. # but dont ignore single files in root
  5. !.gitignore
  6. !README.md
  7. !LICENSE
  8.  
  9. # but don't ignore resources folder
  10. !resources/
  11. # ignore almost everything in resources folder
  12. resources/*
  13. # but don't ignore resources/views and subfolder/-files
  14. !resources/views/
  15. !resources/views/**
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement