MMBA Chartered Accountants & Registered Auditors established in 2009, is your trusted source for expert financial advice across the UK, with offices in Preston, Luton, Cambridge, and London. Visit-> https://www.mmba.co.uk/ Call Now -> 01772378020

.gitignore 703B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # ---> CVS
  2. /CVS/*
  3. **/CVS/*
  4. .cvsignore
  5. */.cvsignore
  6. # ---> C++
  7. # Prerequisites
  8. *.d
  9. # Compiled Object files
  10. *.slo
  11. *.lo
  12. *.o
  13. *.obj
  14. # Precompiled Headers
  15. *.gch
  16. *.pch
  17. # Compiled Dynamic libraries
  18. *.so
  19. *.dylib
  20. *.dll
  21. # Fortran module files
  22. *.mod
  23. *.smod
  24. # Compiled Static libraries
  25. *.lai
  26. *.la
  27. *.a
  28. *.lib
  29. # Executables
  30. *.exe
  31. *.out
  32. *.app
  33. # ---> CakePHP
  34. # CakePHP 3
  35. /vendor/*
  36. /config/app.php
  37. /tmp/cache/models/*
  38. !/tmp/cache/models/empty
  39. /tmp/cache/persistent/*
  40. !/tmp/cache/persistent/empty
  41. /tmp/cache/views/*
  42. !/tmp/cache/views/empty
  43. /tmp/sessions/*
  44. !/tmp/sessions/empty
  45. /tmp/tests/*
  46. !/tmp/tests/empty
  47. /logs/*
  48. !/logs/empty
  49. # CakePHP 2
  50. /app/tmp/*
  51. /app/Config/core.php
  52. /app/Config/database.php
  53. /vendors/*