mirror of
https://github.com/nvbn/thefuck.git
synced 2025-04-15 15:20:42 +01:00
18 lines
553 B
Python
18 lines
553 B
Python
import re
|
|
from thefuck.utils import get_all_matched_commands, replace_command
|
|
from thefuck.specific.git import git_support
|
|
|
|
|
|
@git_support
|
|
def match(command):
|
|
return (" is not a git command. See 'git --help'." in command.stderr
|
|
and 'Did you mean' in command.stderr)
|
|
|
|
|
|
@git_support
|
|
def get_new_command(command):
|
|
broken_cmd = re.findall(r"git: '([^']*)' is not a git command",
|
|
command.stderr)[0]
|
|
matched = get_all_matched_commands(command.stderr)
|
|
return replace_command(command, broken_cmd, matched)
|