時々私は私が実際に意味することをタイプミスします:
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にステータスを教えてもらいたいのです。誰かがこれを行う方法を知っていますか?