Merge pull request #10 from jaehyeonpy/new/git-add-no-git
feat : Replace 'add' with 'git add',which is a common mistake beginners makes
This commit is contained in:
commit
71cb35926c
|
|
@ -0,0 +1,11 @@
|
|||
def match(command):
|
||||
##
|
||||
return (
|
||||
command.script == "add ."
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
def get_new_command(command):
|
||||
return (command.script.replace("add .","git add .",1))
|
||||
Loading…
Reference in New Issue