Index: git_common.py |
diff --git a/git_common.py b/git_common.py |
index 9d9f46415a479a2c6626d078b7ac9af13ed2b946..2b7d258f60cad2c0cbfae55bd42cfa66e562a138 100644 |
--- a/git_common.py |
+++ b/git_common.py |
@@ -92,9 +92,10 @@ GIT_TRANSIENT_ERRORS = ( |
GIT_TRANSIENT_ERRORS_RE = re.compile('|'.join(GIT_TRANSIENT_ERRORS), |
re.IGNORECASE) |
-# First version where the for-each-ref command's format string supported the |
-# upstream:track token. |
-MIN_UPSTREAM_TRACK_GIT_VERSION = (1, 9) |
+# git's for-each-ref command first supported the upstream:track token in its |
+# format string in version 1.9.0, but some usages were broken until 2.3.0. |
+# See git commit b6160d95 for more information. |
+MIN_UPSTREAM_TRACK_GIT_VERSION = (2, 3) |
class BadCommitRefException(Exception): |
def __init__(self, refs): |