mirror of
https://github.com/nvbn/thefuck.git
synced 2025-09-26 15:12:32 +01:00
fixed #670
This commit is contained in:
12
thefuck/rules/git_remote_delete.py
Normal file
12
thefuck/rules/git_remote_delete.py
Normal 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")
|
Reference in New Issue
Block a user