summaryrefslogtreecommitdiffstats
path: root/git_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_command.py')
-rw-r--r--git_command.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/git_command.py b/git_command.py
index dc542c36..5017ea9b 100644
--- a/git_command.py
+++ b/git_command.py
@@ -28,7 +28,8 @@ from repo_trace import REPO_TRACE, IsTrace, Trace
28from wrapper import Wrapper 28from wrapper import Wrapper
29 29
30GIT = 'git' 30GIT = 'git'
31MIN_GIT_VERSION = (1, 5, 4) 31# Should keep in sync with the "repo" launcher file.
32MIN_GIT_VERSION = (2, 10, 2)
32GIT_DIR = 'GIT_DIR' 33GIT_DIR = 'GIT_DIR'
33 34
34LAST_GITDIR = None 35LAST_GITDIR = None