mirror of
https://github.com/nvbn/thefuck.git
synced 2025-11-15 14:25:58 +00:00
13 lines
449 B
Python
13 lines
449 B
Python
def match(command, settings):
|
|
return ('git' in command.script
|
|
and 'pull' in command.script
|
|
and 'set-upstream' in command.stderr)
|
|
|
|
|
|
def get_new_command(command, settings):
|
|
line = command.stderr.split('\n')[-3].strip()
|
|
branch = line.split(' ')[-1]
|
|
set_upstream = line.replace('<remote>', 'origin')\
|
|
.replace('<branch>', branch)
|
|
return u'{} && {}'.format(set_upstream, command.script)
|