Пример #1
0
 def __init__(self,
              repo_path,
              remote,
              default_ref,
              parallel=False,
              print_output=True):
     GitRepo.__init__(self,
                      repo_path,
                      remote,
                      default_ref,
                      parallel=parallel,
                      print_output=print_output)
Пример #2
0
    def __init__(self, repo_path, remote, default_ref, parallel=False):
        """ProjectRepo __init__

        :param str repo_path: Absolute path to repo
        :param str remote: Default remote name
        :param str default_ref: Default ref
        :param Optional[bool] parallel: Whether command is being run in parallel, affects output. Defaults to False
        """

        GitRepo.__init__(self,
                         repo_path,
                         remote,
                         default_ref,
                         parallel=parallel)