Esempio n. 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, '')
Esempio n. 2
0
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)
Esempio n. 3
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, '')
Esempio n. 4
0
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)
Esempio n. 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, '')
Esempio n. 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, '')