Exemple #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, '')
Exemple #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)
Exemple #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, '')
Exemple #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)
Exemple #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, '')
Exemple #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, '')