1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-05 18:31:10 +01:00
This commit is contained in:
Stef Pletinck 2017-10-05 18:44:04 +02:00
parent 18992f246a
commit 89bc2e9759

View File

@ -0,0 +1,12 @@
from thefuck.utils import replace_argument
from thefuck.specific.git import git_support
@git_support
def match(command):
return "git remote delete" in command.script
@git_support
def get_new_command(command):
return replace_argument(command.script, "delete", "remove")