Skip to content

Instantly share code, notes, and snippets.

@gaurangrshah
Last active January 18, 2019 05:54
Show Gist options
  • Save gaurangrshah/2ee7e8b39ede97fd1bf4bf2be319261e to your computer and use it in GitHub Desktop.
Save gaurangrshah/2ee7e8b39ede97fd1bf4bf2be319261e to your computer and use it in GitHub Desktop.
wordpress .gitignore
# ignore everything in the root except the "wp-content" directory.
/*
!wp-content/
# ignore all files starting with .
.*
# track this file .gitignore (i.e. do NOT ignore it)
!.gitignore
# track .editorconfig file (i.e. do NOT ignore it)
!.editorconfig
# track readme.md in the root (i.e. do NOT ignore it)
!readme.md
# ignore all files that start with ~
~*
# ignore OS generated files
ehthumbs.db
Thumbs.db
# ignore Editor files
*.sublime-project
*.sublime-workspace
*.komodoproject
*.code-workspace
*.vscode
# ignore log files and databases
*.log
*.sql
*.sqlite
# ignore compiled files
*.com
*.class
*.dll
*.exe
*.o
*.so
# ignore packaged files
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# ignore everything in the "wp-content" directory, except:
# "mu-plugins" directory
# "plugins" directory
# "themes" directory
wp-content/*
!wp-content/mu-plugins/
!wp-content/plugins/
!wp-content/themes/
# "ignore specific plugins: revisr, show current template, yellow pencil
wp-content/plugins/revisr
wp-content/plugins/show-current-template/
wp-content/plugins/yellow-pencil-visual-theme-customizer/
# ignore these plugins from the core
wp-content/plugins/hello.php
wp-content/plugins/akismet/
# ignore specific themes
wp-content/themes/twenty*/
# ignore node/grunt dependency directories
node_modules/
# Hidden files
*.DS_Store
*Thumbs.db
*.sass-cache*
*~imageoptim*
/sitemap.*
/wp-config.php
/mwp_db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment