Files
thefuck/thefuck/rules/git_push.py
T
2015-08-26 21:43:20 +02:00

13 lines
282 B
Python

from thefuck.specific.git import git_support
@git_support
def match(command, settings):
return ('push' in command.script
and 'set-upstream' in command.stderr)
@git_support
def get_new_command(command, settings):
return command.stderr.split('\n')[-3].strip()