We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 346424d commit 3d74543Copy full SHA for 3d74543
git/objects/submodule/base.py
@@ -136,7 +136,8 @@ def _get_intermediate_items(self, item):
136
137
@classmethod
138
def _need_gitfile_submodules(cls, git):
139
- return git.version_info[:3] >= (1, 8, 0)
+ # on debian wheezy, it seems to already support git files at this version. Maybe even earler, who knows
140
+ return git.version_info[:3] >= (1, 7, 10)
141
142
def __eq__(self, other):
143
"""Compare with another submodule"""
0 commit comments