mirror of
https://github.com/clearml/clearml-agent
synced 2025-06-26 18:16:15 +00:00
Add support for pulling recursive git modules as as well as main project
This commit is contained in:
parent
95d503afdd
commit
8f23f3b4c0
@ -456,7 +456,7 @@ class Git(VCS):
|
|||||||
)
|
)
|
||||||
|
|
||||||
def pull(self):
|
def pull(self):
|
||||||
self.call("fetch", "--all", cwd=self.location)
|
self.call("fetch", "--all", "--recurse-submodules", cwd=self.location)
|
||||||
|
|
||||||
info_commands = dict(
|
info_commands = dict(
|
||||||
url=Argv(executable_name, "ls-remote", "--get-url", "origin"),
|
url=Argv(executable_name, "ls-remote", "--get-url", "origin"),
|
||||||
|
Loading…
Reference in New Issue
Block a user