mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-09-18 08:45:55 +00:00
chore: update gitignore list (#9437)
Updated the gitignore list with the command : `go run scripts/generate-gitignores.go`
This commit is contained in:
parent
d9a0ba2cac
commit
db5524a9ab
85 changed files with 1579 additions and 295 deletions
|
@ -1,19 +1,23 @@
|
|||
*.log
|
||||
wp-config.php
|
||||
wp-content/advanced-cache.php
|
||||
wp-content/backup-db/
|
||||
wp-content/backups/
|
||||
wp-content/blogs.dir/
|
||||
wp-content/cache/
|
||||
wp-content/upgrade/
|
||||
wp-content/uploads/
|
||||
wp-content/mu-plugins/
|
||||
wp-content/wp-cache-config.php
|
||||
# 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
|
||||
|
||||
/.htaccess
|
||||
/license.txt
|
||||
/readme.html
|
||||
/sitemap.xml
|
||||
/sitemap.xml.gz
|
||||
# ignore specific themes
|
||||
wp-content/themes/twenty*/
|
||||
|
||||
# ignore node dependency directories
|
||||
node_modules/
|
||||
|
||||
# ignore log files and databases
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue