Beispiel #1
0
 def git_log(self, project_id, branch):
     project = self.get(project_id)
     git = Git(project.checkout_dir, project.repo_url)
     return git.log(branch)
Beispiel #2
0
 def git_log(self, project_id):
     project = self.get(project_id)
     git = Git(project.checkout_dir, project.repo_url)
     return git.log()
Beispiel #3
0
 def git_branch_commit_log(self, project, branch):
     git = Git(project.checkout_dir, project.repo_url)
     git.checkout_branch(branch)
     return git.log()
Beispiel #4
0
 def git_branch_commit_log(self, project, branch):
     git = Git(project.checkout_dir, project.repo_url)
     git.checkout_branch(branch)
     return git.log()