You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
533 B
38 lines
533 B
# .gitignore - List of filenames git should ignore |
|
|
|
# Filenames that should be ignored wherever they appear |
|
*~ |
|
*.rej |
|
*.xpi |
|
*.pyc |
|
*.pyo |
|
TAGS |
|
tags |
|
ID |
|
.DS_Store* |
|
|
|
# Vim swap files. |
|
.*.sw[a-z] |
|
|
|
# User files that may appear at the root |
|
/.mozconfig* |
|
/mozconfig |
|
/configure |
|
/config.cache |
|
/config.log |
|
/.clang_complete |
|
/mach.ini |
|
/binoc.cfg |
|
|
|
# Build directories |
|
/obj*/ |
|
/build-*/ |
|
|
|
# Project directories |
|
/projects/*/* |
|
|
|
# Ignore the files and directory that Eclipse IDE creates |
|
.project |
|
.cproject |
|
.settings/ |
|
|
|
|