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
我在这里做错了什么?
答案 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