Add git_two_dashes rule

This commit is contained in:
Pablo Santiago Blum de Aguiar
2015-10-17 17:35:39 -03:00
parent 3da26192cb
commit 5389d0c106
3 changed files with 62 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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)