예제 #1
0
def rebase():
    """Rebase onto a branch."""
    branch = choose_ref(N_('Select New Base'), N_('Rebase'))
    if not branch:
        return
    #TODO cmd
    status, output = git.rebase(branch, with_stderr=True, with_status=True)
    Interaction.log_status(status, output, '')
예제 #2
0
파일: guicmds.py 프로젝트: moreati/git-cola
def rebase():
    """Rebase onto a branch."""
    branch = choose_from_combo('Rebase Branch', cola.model().all_branches())
    if not branch:
        return
    #TODO cmd
    status, output = git.rebase(branch, with_stderr=True, with_status=True)
    qtutils.log(status, output)
예제 #3
0
파일: guicmds.py 프로젝트: char101/git-cola
def rebase():
    """Rebase onto a branch."""
    branch = choose_ref(N_('Select New Base'), N_('Rebase'))
    if not branch:
        return
    #TODO cmd
    status, output = git.rebase(branch, with_stderr=True, with_status=True)
    Interaction.log_status(status, output, '')
예제 #4
0
파일: guicmds.py 프로젝트: mwh/git-cola
def rebase():
    """Rebase onto a branch."""
    branch = choose_from_combo('Rebase Branch',
                               cola.model().all_branches())
    if not branch:
        return
    #TODO cmd
    status, output = git.rebase(branch, with_stderr=True, with_status=True)
    qtutils.log(status, output)
예제 #5
0
def rebase():
    """Rebase onto a branch."""
    branch = choose_from_combo(N_('Rebase Branch'),
                               cola.model().all_branches())
    if not branch:
        return
    #TODO cmd
    status, output = git.rebase(branch, with_stderr=True, with_status=True)
    Interaction.log_status(status, output, '')
예제 #6
0
def rebase():
    """Rebase onto a branch."""
    branch = choose_from_combo(N_('Rebase Branch'),
                               cola.model().all_branches())
    if not branch:
        return
    #TODO cmd
    status, output = git.rebase(branch, with_stderr=True, with_status=True)
    Interaction.log_status(status, output, '')