diff --git a/thefuck/rules/git-status-no-git.py b/thefuck/rules/git-status-no-git.py new file mode 100644 index 0000000..54bbd3e --- /dev/null +++ b/thefuck/rules/git-status-no-git.py @@ -0,0 +1,11 @@ +def match(command): + + return ( + command.script == "status" + ) + + + + +def get_new_command(command): + return (command.script.replace("status","git status",1)) \ No newline at end of file