2ebdac70da
`dir/*` style let git ignore files and directories in `dir/`, but not `dir/` itself. This cause `git clean -df` to remove `dir/` **with its contents**! To prevent `git clean -df` to remove data directories (`avatar/`, `file/`, etc), use `dir/` (or `dir`) style in gitignore.
32 lines
252 B
Plaintext
32 lines
252 B
Plaintext
avatar/
|
|
files/
|
|
file/
|
|
local/
|
|
_darcs/
|
|
logs/
|
|
log/
|
|
run/
|
|
config.php
|
|
.htaccess
|
|
httpd.conf
|
|
*.tmproj
|
|
dataobject.ini
|
|
*~
|
|
*.bak
|
|
*.orig
|
|
*.rej
|
|
.#*
|
|
*.swp
|
|
.buildpath
|
|
.project
|
|
.settings
|
|
TODO.rym
|
|
config-*.php
|
|
good-config.php
|
|
lac08.log
|
|
php.log
|
|
.DS_Store
|
|
nbproject
|
|
*.mo
|
|
|