使用gitpython,我想使用repo.git.submodule('foreach', …)
并获取可用变量,例如name
,sm_path
,displaypath
,sha1
和git documentation中定义的toplevel
。
我在gitpython上找不到任何文档,并且我对该API的理解受到限制。
答案 0 :(得分:0)
repo = git.Repo('foo/bar')
for sub in repo.submodules:
pass
和说明文件:https://gitpython.readthedocs.io/en/stable/reference.html#git.repo.base.Repo.submodules