1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-11-16 23:06:00 +00:00
Files
thefuck/thefuck/rules/git_two_dashes.py
Pablo Santiago Blum de Aguiar 5389d0c106 Add git_two_dashes rule
2015-10-17 18:40:53 -03: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.stderr
and '` (with two dashes ?)' in command.stderr)
@git_support
def get_new_command(command):
to = command.stderr.split('`')[1]
return replace_argument(command.script, to[1:], to)