mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
db5524a9ab
Updated the gitignore list with the command : `go run scripts/generate-gitignores.go`
23 lines
477 B
Text
23 lines
477 B
Text
# ignore everything in the root except the "wp-content" directory.
|
|
!wp-content/
|
|
|
|
# ignore everything in the "wp-content" directory, except:
|
|
# "mu-plugins", "plugins", "themes" directory
|
|
wp-content/*
|
|
!wp-content/mu-plugins/
|
|
!wp-content/plugins/
|
|
!wp-content/themes/
|
|
|
|
# ignore these plugins
|
|
wp-content/plugins/hello.php
|
|
|
|
# ignore specific themes
|
|
wp-content/themes/twenty*/
|
|
|
|
# ignore node dependency directories
|
|
node_modules/
|
|
|
|
# ignore log files and databases
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|