我的git默认文件夹是c:\ users \用户名\.git
我应该使用什么命令进入C:/project?
我的git默认文件夹是c:\ users \用户名\.git
我应该使用什么命令进入C:/project?
当前回答
只需右键单击所需的文件夹,并选择git-bash这里选项,它将引导您到该文件夹,并开始工作,希望它会工作。
其他回答
为了最快的方法 $ CD“项目”
我想补充的是,如果您使用的是共享驱动器,请将路径括在双引号中,并保留反斜杠。这对我来说很管用:
$cd /path/to/"\\\share\users\username\My Documents\mydirectory\"
以下是我遵循的步骤:
In bash, check in which directory you are by using the command: $ pwd copy the URL of the directory you want to go like after using the first command (PWD) I got: $ /c/Users/yourUsername Now I want to change this to the directory of c drive and folder MyPictures. To do that, I will go the directory of MyPictures, copy the URL, and paste it in the Git bash. However, before that: C:\MyPicture becomes $ cd /C/MyPicture (backslashes are replaced with slashes) if the folder name is having some spaces like (my program) then you need to enclose it in double quotes like: $ cd "C:\Program Files" Remember to change directory you just need to copy the requiredUrl and paste that in bash with double-quotes like: cd "required URL"
注意:URL需要斜杠。
只需右键单击所需的文件夹,并选择git-bash这里选项,它将引导您到该文件夹,并开始工作,希望它会工作。
要从c盘移动到其他驱动器(D或E),请使用以下命令----->
CD“你的路径” 现在按回车键。使用$pwd检查路径。 您的路径已从一个目录更改到另一个目录。
cd“D:\WEB_DEV\HTML_CSS_projects\TouristVisitors_LandingPage”。 注意——这是我的路径,你的路径应该是不同的。