feat : Replace 'status' with 'git status',which is a common mistake beginners makes

This commit is contained in:
unknown 2023-07-10 20:50:01 +09:00
parent 206616c418
commit aca3fe1b2f

View File

@ -0,0 +1,11 @@
def match(command):
return (
command.script == "status"
)
def get_new_command(command):
return (command.script.replace("status","git status",1))