Files
thefuck/thefuck/rules/git_two_dashes.py
T
2017-08-31 17:58:56 +02:00

15 lines
375 B
Python

from thefuck.utils import replace_argument
from thefuck.specific.git import git_support
@git_support
def match(command):
return ('error: did you mean `' in command.output
and '` (with two dashes ?)' in command.output)
@git_support
def get_new_command(command):
to = command.output.split('`')[1]
return replace_argument(command.script, to[1:], to)