diff options
author | Justin chi <chigang@huawei.com> | 2016-10-16 04:28:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-16 04:28:33 +0000 |
commit | a34dce641ee91d9453321be7e14351e4afd1e1de (patch) | |
tree | 2731a323b731d08554d80d2216ce87d4e0ded537 /.gitignore | |
parent | 38a7d02dae6715520071edbd635e0d2085263399 (diff) | |
parent | c60ef88069e862c7135cb194df965b9c823c29f7 (diff) |
Merge "DO NOT track temporary and package files"
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 59 |
1 files changed, 55 insertions, 4 deletions
@@ -1,8 +1,59 @@ -*~ -.*.sw? +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so +*.pyc /docs_build/ /docs_output/ /releng/ /work -*.pyc -__main__.log + +# Packages # +############ +# it's better to unpack these files and commit the raw source +# git has its own built in compression methods +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip +*.bz2 +*.tbz2 +*.tgz + +# Logs and databases # +###################### +*.log +*.sql +*.sqlite + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +.idea +.tox +*.sublime* +*.egg-info +Icon? +ehthumbs.db +Thumbs.db +.eggs + +# User driven backup files # +############################ +*~ +.*.sw? +*.bak +*.swp + |