diff options
author | Julien Pivotto <roidelapluie@inuits.eu> | 2015-07-22 09:28:42 +0200 |
---|---|---|
committer | Julien Pivotto <roidelapluie@inuits.eu> | 2015-07-22 13:35:47 +0200 |
commit | 6fdb6a5eac7433098cfbb33d3e18d6dbba8fa3d3 (patch) | |
tree | 055bc797beccfe6d93b6883d409e7e0e4695d33e /git | |
parent | 1883eb9282468b3487d24f143b219b7979d86223 (diff) | |
download | gitpython-6fdb6a5eac7433098cfbb33d3e18d6dbba8fa3d3.tar.gz |
gic {init,clone} --separate-git-dir is supported only since 1.7.5
Without this commit the update() function of a submodule does not work
in CentOS 6.
Diffstat (limited to 'git')
-rw-r--r-- | git/objects/submodule/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/submodule/base.py b/git/objects/submodule/base.py index 610dddad..eea091f8 100644 --- a/git/objects/submodule/base.py +++ b/git/objects/submodule/base.py @@ -137,7 +137,7 @@ class Submodule(util.IndexObject, Iterable, Traversable): @classmethod def _need_gitfile_submodules(cls, git): - return git.version_info[:3] >= (1, 7, 0) + return git.version_info[:3] >= (1, 7, 5) def __eq__(self, other): """Compare with another submodule""" |