mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-20 09:39:01 +00:00
16 lines
494 B
Python
16 lines
494 B
Python
from thefuck import utils
|
|
|
|
|
|
@utils.git_support
|
|
def match(command, settings):
|
|
return ('git' in command.script
|
|
and '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 command.script.replace('push', 'push --force')
|