Your Ad Here

Posted By

sherakama on 02/02/12


Tagged

control version drupal git gitignore


Versions (?)

Drupal gitignore with extras


 / Published in: PHP
 

DRUPAL

sites//files sites//settings.php sites/*.local CHANGELOG.txt INSTALL.mysql.txt INSTALL.pgsql.txt INSTALL.txt LICENSE.txt MAINTAINERS.txt UPGRADE.txt

Numerous always-ignore extensions

*.diff *.err *.orig *.log *.rej *.swo *.swp *.vi *~

OS or Editor folders

.DS_Store .cache .project .settings .tmproj nbproject Thumbs.db

Folders to ignore

.hg .svn .CVS cgi-bin

  1. # DRUPAL
  2. sites/*/files
  3. sites/*/settings.php
  4. sites/*.local
  5. CHANGELOG.txt
  6. INSTALL.mysql.txt
  7. INSTALL.pgsql.txt
  8. INSTALL.txt
  9. LICENSE.txt
  10. MAINTAINERS.txt
  11. UPGRADE.txt
  12.  
  13. # Numerous always-ignore extensions
  14. *.diff
  15. *.err
  16. *.orig
  17. *.log
  18. *.rej
  19. *.swo
  20. *.swp
  21. *.vi
  22. *~
  23.  
  24. # OS or Editor folders
  25. .DS_Store
  26. .cache
  27. .project
  28. .settings
  29. .tmproj
  30. nbproject
  31. Thumbs.db
  32.  
  33. # Folders to ignore
  34. .hg
  35. .svn
  36. .CVS
  37. cgi-bin

Report this snippet  

You need to login to post a comment.