feat : Replace 'checkout master' with 'git checkout master',which is a common mistake beginners makes
This commit is contained in:
parent
aca3fe1b2f
commit
31056fc27d
|
|
@ -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))
|
||||
Loading…
Reference in New Issue