제안된 맞춤법 수정 사용

제안된 맞춤법 수정 사용

나는 다음과 같은 생각을 갖고 있습니다.

입력하는 대로

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'...
...

관련 정보