“git mv *” retorna “fonte ruim” em Powershell

6

Quando dentro de um repositório git em Powershell ou CMD, a emissão

git mv * whatever

retornará

fatal: bad source, source=*, destination=whatever

Isso funciona bem ao usar o MSYS (Git Bash).

    
por LuxDie 08.03.2016 / 23:03

1 resposta

1

Como disse @PetSerAI, o prompt de comando do Windows e o PowerShell não expandirão os caracteres de preenchimento e fará git mv falhar.

Use um shell bash como o MSYS.

    
por 30.03.2017 / 10:47