Files
thefuck/thefuck/rules/git_push_pull.py
T
2015-07-24 00:39:56 +03:00

18 lines
569 B
Python

from thefuck import utils
from thefuck.shells import and_
from thefuck.utils import replace_argument
@utils.git_support
def match(command, settings):
return ('push' in command.script
and '! [rejected]' in command.stderr
and 'failed to push some refs to' in command.stderr
and 'Updates were rejected because the tip of your current branch is behind' in command.stderr)
@utils.git_support
def get_new_command(command, settings):
return and_(replace_argument(command.script, 'push', 'pull'),
command.script)