Created
November 21, 2022 20:01
-
-
Save Yalme/808bd5d68322611985bb00a69c8657fc to your computer and use it in GitHub Desktop.
Example of web development based .gitignore file
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
# Common paths | |
**/lib/ | |
**/libs/ | |
**/cache/ | |
**/vendor/ | |
**/uploads/ | |
**/images/ | |
**/imgs/ | |
**/files/ | |
**/fonts/ | |
**/logs/ | |
# Images / Video / Files / Fonts | |
*.jpg | |
*.jpeg | |
*.png | |
*.svg | |
*.gif | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
*.woff | |
*.eot | |
*.ttf | |
*.otf | |
*.xls | |
*.xlsb | |
# Logs and databases | |
*.log | |
*.sql | |
*.sqlite | |
*.db | |
# Compiled source | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# OS generated files | |
ehthumbs.db | |
Thumbs.db | |
dwsync.xml | |
# Specific folders | |
test/ | |
# wordpress | |
**/wp-admin/ | |
**/wp-includes/ | |
**/wp-content/themes/twenty* | |
**/wp-content/plugins/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment