From 079ddaae896018153ec791c8a8e81c1aa6d0e0bb Mon Sep 17 00:00:00 2001 From: Xiao Hanyu Date: Mon, 5 Jun 2017 15:08:00 +0800 Subject: [PATCH] Ignore pyenv files in .gitignore. Some python developers use Python version manager to create and switch Python enviroments, pyenv (http://github.com/yyuu/pyenv) is one of the version managers. When you use `pyenv local x.x.x`, `pyenv` will put a `.python-version` file in project directory, which, in general, should not be commited to git. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index bac2789907789..2ad30456bcad3 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,7 @@ app.db .idea *.sqllite .vscode +.python-version # Node.js, webpack artifacts *.entry.js @@ -33,3 +34,4 @@ node_modules npm-debug.log yarn.lock superset/assets/version_info.json +