Use a correção sugerida no erro de digitação

1

Eu tive essa ideia:

When you type

git glone https://repo.git

you get

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

Did you mean this?
      clone

Como você pode aceitar automaticamente essa sugestão para correção?

    
por rubo77 08.09.2015 / 11:47

1 resposta

1

Você pode usar essa configuração global:

git config --global help.autoCorrect -1

resultando em:

$ 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'...
...
    
por 08.09.2015 / 11:47

Tags