提案されたスペル修正の使用

提案されたスペル修正の使用

私は次のような考えを持っています。

入力したとおり

git glone https://repo.git

あなたは得る

git: 'glone' is not a git command. See 'git --help'.

Did you mean this?
      clone

編集のためにこの提案をどのように自動的に受け入れることができますか?

ベストアンサー1

次のグローバル設定を使用できます。

git config --global help.autoCorrect -1

次に続く:

$ git glone http://repo.git
WARNING: You called a Git command named 'glone', which does not exist.
Continuing under the assumption that you meant 'clone'
Cloning into 'repo'...
...

おすすめ記事