Created
February 29, 2012 21:52
-
-
Save contextlimit/1944724 to your computer and use it in GitHub Desktop.
.gitignore for LemonStand (keeping LS version controlled)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ignore metadata | |
| .DS_Store | |
| *.svn* | |
| Thumbs.db | |
| # Ignore /logs directory contents | |
| /logs/* | |
| !/logs/.htaccess | |
| # Ignore /temp directory contents | |
| /temp/* | |
| !/temp/.gitignore | |
| # Ignore /resources directory contents | |
| /resources/* | |
| !/resources/.gitignore | |
| # Ignore /uploaded directory contents | |
| /uploaded/* | |
| !/uploaded/public | |
| !/uploaded/thumbnails | |
| /uploaded/public/* | |
| !/uploaded/public/.htaccess | |
| /uploaded/thumbnails/* | |
| !/uploaded/thumbnails/.gitignore | |
| # Ignore configuration files | |
| /config/* | |
| !/config/.htaccess | |
| # Ignore themes directory | |
| /themes/* | |
| # Ignore custom modules | |
| /modules/* | |
| !/modules/backend | |
| !/modules/backend/* | |
| !/modules/blog | |
| !/modules/blog/* | |
| !/modules/cms | |
| !/modules/cms/* | |
| !/modules/core | |
| !/modules/core/* | |
| !/modules/session | |
| !/modules/session/* | |
| !/modules/shop | |
| !/modules/shop/* | |
| !/modules/system | |
| !/modules/system/* | |
| !/modules/users | |
| !/modules/users/* | |
| # Ignore temporary DB update files | |
| *.sql_tmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment