Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更改目录,但 Git Bash 一直给我这个错误
ssh.exe": cd: Visual: 没有这样的文件或目录
当目录在那里时,如下图所示。我想我没有使用正确的语法导航到目录。我尝试了以下方法:
ls
cd Visual Studio 2012
谁能告诉我我在这里做错了什么?
我是 Git Bash 的新手,所以我无法弄清楚。
您需要引用目录名称中的空格,因为默认情况下,bash 在空格处拆分单词,因此 Visual Studio 2012 需要:
cd "Visual Studio 2012"
或者
cd Visual\ Studio\ 2012