Ejemplo n.º 1
0
def get_active_branch(repo_path):

    return porcelain.active_branch(str(repo_path)).decode()
Ejemplo n.º 2
0
 def active_branch(self):
     return git.active_branch(self).decode()
Ejemplo n.º 3
0
def get_current_branch(repo):
    branch = porcelain.active_branch(repo)
    return branch