Unless full paths are used .gitignore, all matching files and folders will be ignored, however deep they are in the repo.

For example, ignoring log/* doesn't just ignore all log files, but also files such as lib/project/log/awesome_logger.rb.  It's a mistake I've made a couple of times but never seemed to have learned from.
This commit is contained in:
Tom Ward 2010-11-09 07:25:48 +00:00 committed by Chris Wanstrath
parent ac35a765a4
commit 6f6fbb0363
1 changed files with 7 additions and 7 deletions

View File

@ -1,12 +1,12 @@
*.rbc
.bundle
vendor/bundle
log/*
tmp/*
db/*.sqlite3
public/system/*
coverage/
*.sassc
.sass-cache
capybara-*.html
.rspec
/.bundle
/vendor/bundle
/log/*
/tmp/*
/db/*.sqlite3
/public/system/*
/coverage/