[Git]集线器更改目录无法正常工作。有什么问题?

时间:2016-01-01 04:17:20

标签: git github

GitHub更改目录无效。

我输入了:" cd / C / Users / Anon / Desktop / Git_Ballsy"和GitHub(终端)不断抛出这个......

C:\Users\Anon\Documents\GitHub [master +1 ~0 -0 !]> cd /C/Users/Anon/Desktop/Git_Ballsy
Set-Location : A positional parameter cannot be found that accepts argument 'Anon/Desktop/Git_Ballsy'.
At line:1 char:1
+ cd /C/Users/Anon/Desktop/Git_Ballsy
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [Set-Location], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.SetLocationCommand

我在这里做错了什么?

1 个答案:

答案 0 :(得分:1)

注意命令提示符的反斜杠:

C:\Users\Anon\Documents\GitHub [master +1 ~0 -0 !]>

这表示您使用的是cmd.exe或PowerShell,而不是Git Bash(使用正斜杠)。 Set-Location部分建议使用PowerShell。因此,您应该在cd命令中使用Windows风格的路径:

cd C:\Users\Anon\Desktop\Git_Ballsy