예제 #1
0
파일: base.py 프로젝트: zofuthan/GitPython
    def create_submodule(self, *args, **kwargs):
        """Create a new submodule

        :note: See the documentation of Submodule.add for a description of the
            applicable parameters
        :return: created submodules"""
        return Submodule.add(self, *args, **kwargs)
예제 #2
0
파일: base.py 프로젝트: john5a18/GitPython
    def create_submodule(self, *args, **kwargs):
        """Create a new submodule

        :note: See the documentation of Submodule.add for a description of the
            applicable parameters
        :return: created submodules"""
        return Submodule.add(self, *args, **kwargs)
예제 #3
0
파일: base.py 프로젝트: zofuthan/GitPython
 def submodules(self):
     """
     :return: git.IterableList(Submodule, ...) of direct submodules
         available from the current head"""
     return Submodule.list_items(self)
예제 #4
0
파일: base.py 프로젝트: john5a18/GitPython
 def submodules(self):
     """
     :return: git.IterableList(Submodule, ...) of direct submodules
         available from the current head"""
     return Submodule.list_items(self)