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

This commit is contained in:
unknown 2023-07-10 20:55:13 +09:00
parent aca3fe1b2f
commit 31056fc27d

View File

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