mirror of
https://github.com/h5bp/html5-boilerplate.git
synced 2026-01-08 22:28:10 -05:00
A repository's `.gitignore` should be focused on ignoring files within the repo that we do not want to be committed. For example, a build directory. A global ignore is a better place for ignoring OS-level files, editor extensions, and files that you are always likely to want ignored (e.g. zip). Close #1065 Close #1120
53 lines
579 B
Plaintext
53 lines
579 B
Plaintext
# Read about how to use .gitignore: http://h5bp.com/ae
|
|
|
|
# Numerous always-ignore extensions
|
|
*.diff
|
|
*.err
|
|
*.orig
|
|
*.log
|
|
*.rej
|
|
*.swo
|
|
*.swp
|
|
*.vi
|
|
*~
|
|
*.sass-cache
|
|
|
|
# OS or Editor folders
|
|
.DS_Store
|
|
._*
|
|
Thumbs.db
|
|
.cache
|
|
.project
|
|
.settings
|
|
.tmproj
|
|
nbproject
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Dreamweaver added files
|
|
_notes
|
|
dwsync.xml
|
|
|
|
# Komodo
|
|
*.komodoproject
|
|
.komodotools
|
|
|
|
# Espresso
|
|
*.esproj
|
|
*.espressostorage
|
|
|
|
# Rubinius
|
|
*.rbc
|
|
|
|
# Folders to ignore
|
|
.hg
|
|
.svn
|
|
.CVS
|
|
intermediate
|
|
publish
|
|
.idea
|
|
|
|
# build script local files
|
|
build/buildinfo.properties
|
|
build/config/buildinfo.properties
|