diff --git a/src/DjangoBlog-master/.gitignore b/src/DjangoBlog-master/.gitignore index 3015816..9834f08 100644 --- a/src/DjangoBlog-master/.gitignore +++ b/src/DjangoBlog-master/.gitignore @@ -1,80 +1,80 @@ # Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class +__pycache__/ # Python缓存文件 +*.py[cod] # Python编译文件 +*$py.class # Python类文件 # C extensions -*.so +*.so # C扩展文件 # Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -*.egg-info/ -.installed.cfg -*.egg +.Python # Python相关文件 +env/ # 环境目录 +build/ # 构建目录 +develop-eggs/ # 开发egg包 +dist/ # 分发目录 +downloads/ # 下载目录 +eggs/ # Egg包目录 +.eggs/ # Egg包目录 +lib/ # 库目录 +lib64/ # 64位库目录 +parts/ # 部件目录 +sdist/ # 源码分发目录 +var/ # 变量目录 +*.egg-info/ # Egg信息目录 +.installed.cfg # 安装配置 +*.egg # Egg文件 # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec +*.manifest # 清单文件 +*.spec # 规范文件 # Installer logs -pip-log.txt -pip-delete-this-directory.txt +pip-log.txt # Pip日志 +pip-delete-this-directory.txt # Pip删除目录标记 # Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*,cover +htmlcov/ # HTML覆盖率报告 +.tox/ # Tox测试目录 +.coverage # 覆盖率数据 +.coverage.* # 覆盖率数据文件 +.cache # 缓存目录 +nosetests.xml # Nose测试报告 +coverage.xml # 覆盖率XML报告 +*,cover # 覆盖率文件 # Translations -*.pot +*.pot # 翻译模板文件 # Django stuff: -*.log -logs/ +*.log # 日志文件 +logs/ # 日志目录 # Sphinx documentation -docs/_build/ +docs/_build/ # Sphinx构建目录 # PyBuilder -target/ - +target/ # 目标目录 # PyCharm # http://www.jetbrains.com/pycharm/webhelp/project.html -.idea -.iml -static/ +.idea # PyCharm IDE配置 +.iml # IntelliJ模块文件 +static/ # 静态文件目录 + # virtualenv -venv/ +venv/ # 虚拟环境目录 -collectedstatic/ -djangoblog/whoosh_index/ -google93fd32dbd906620a.html -baidu_verify_FlHL7cUyC9.html -BingSiteAuth.xml -cb9339dbe2ff86a5aa169d28dba5f615.txt -werobot_session.* -django.jpg -uploads/ -settings_production.py -werobot_session.db -bin/datas/ +collectedstatic/ # 收集的静态文件目录 +djangoblog/whoosh_index/ # Whoosh搜索索引目录 +google93fd32dbd906620a.html # Google验证文件 +baidu_verify_FlHL7cUyC9.html # 百度验证文件 +BingSiteAuth.xml # Bing站点认证文件 +cb9339dbe2ff86a5aa169d28dba5f615.txt # 验证文本文件 +werobot_session.* # WeRobot会话文件 +django.jpg # Django图片文件 +uploads/ # 文件上传目录 +settings_production.py # 生产环境配置文件 +werobot_session.db # WeRobot会话数据库 +bin/datas/ # 二进制数据目录 \ No newline at end of file