有时我打错了我真正的意思:
whunt$ git statsu
git: 'statsu' is not a git command. See 'git --help'.
Did you mean this?
status
您可以通过更改git config中的 help.autocorrect 来告诉 git 只做它建议的事情。但有时我打错了我不想让 git 自动为我运行的破坏性操作:
whunt$ git checkoot some/file
git: 'checkoot' is not a git command. See 'git --help'.
Did you mean this?
checkout
所以真的,与其运行它认为我想要的,我宁愿让 git 在它不理解命令时告诉我状态。有谁知道如何做到这一点?