code.gitea.io/gitea@v1.21.7/options/gitignore/SugarCRM (about) 1 ## SugarCRM 2 # Ignore custom .htaccess stuff. 3 /.htaccess 4 # Ignore the cache directory completely. 5 # This will break the current behaviour. Which was often leading to 6 # the misuse of the repository as backup replacement. 7 # For development the cache directory can be safely ignored and 8 # therefore it is ignored. 9 /cache/* 10 !/cache/index.html 11 # Ignore some files and directories from the custom directory. 12 /custom/history/ 13 /custom/modulebuilder/ 14 /custom/working/ 15 /custom/modules/*/Ext/ 16 /custom/application/Ext/ 17 # Custom configuration should also be ignored. 18 /config.php 19 /config_override.php 20 # The silent upgrade scripts aren't needed. 21 /silentUpgrade*.php 22 # Logs files can safely be ignored. 23 *.log 24 # Ignore the new upload directories. 25 /upload/* 26 !/upload/index.html 27 /upload_backup/