Exemplo n.º 1
0
 def init_repo(self):
     repo = Repo(self.dir_codebase_project)
     repo.init(url=self.project_info['repo_url'])
Exemplo n.º 2
0
    def list_branch(self):
        repo = Repo(self.dir_codebase_project)
        repo.init(url=self.project_info['repo_url'])

        return repo.branches()
Exemplo n.º 3
0
 def list_commit(self, branch):
     repo = Repo(self.dir_codebase_project)
     repo.init(url=self.project_info['repo_url'])
     return repo.commits(branch)
Exemplo n.º 4
0
    def list_tag(self):
        repo = Repo(self.dir_codebase_project)
        repo.init(url=self.project_info['repo_url'])

        return repo.tags()
Exemplo n.º 5
0
 def init_repo(self):
     repo = Repo(self.dir_codebase_project)
     repo.init(url=self.project_info['repo_url'])
Exemplo n.º 6
0
 def list_commit(self, branch):
     repo = Repo(self.dir_codebase_project)
     repo.init(url=self.project_info['repo_url'])
     return repo.commits(branch)
Exemplo n.º 7
0
    def list_branch(self):
        repo = Repo(self.dir_codebase_project)
        repo.init(url=self.project_info['repo_url'])

        return repo.branches()
Exemplo n.º 8
0
    def list_tag(self):
        repo = Repo(self.dir_codebase_project)
        repo.init(url=self.project_info['repo_url'])

        return repo.tags()