[这是我在Stackoverflow上的第一个问题,请不要打我,我是一个初学者]。我有一项任务要做,我得到了如何做的指示。可悲的是,我得到的指示并没有真正起作用。
说明说:
配置github(然后有确切的指令我应该输入
git config --global user.name "name and surename"
git config --global user.email "email addres"
从VIM更改编辑器:
git config --global core.editor notepad
git config --global format.commitMessageColumns 72
在我想要克隆回购的驱动器上找到一个空格。他们建议在桌面上放置一个“prework”文件夹。
我得到的是:
HP@PC MINGW64 ~ (master)
$ git config --global user.name "My-Name-Here"
HP@PC MINGW64 ~ (master)
$ git config --global user.email "My-Name-Here@gmail.com"
HP@PC MINGW64 ~ (master)
$ git config --global core.editor notepad
HP@PC MINGW64 ~ (master)
$ git config --global format.commitMessageColumns 72
HP@PC MINGW64 ~ (master)
$ cd prework
bash: cd: prework: **No such file or directory**
HP@PC MINGW64 ~ (master)
$ C:\Users\HP\Desktop\prework
bash: C:UsersHPDesktopprework: command not found
HP@PC MINGW64 ~ (master)
$
我觉得我从一开始就没有做过一些非常基本的事情。如你所见,我甚至没有得到终端的任何反应。这是正常的吗?好吗?
答案 0 :(得分:0)
好的,我找到了答案。一位朋友告诉我输入“ld”来检查当前目录中的所有文件,然后尝试
HP@PC MINGW64 ~ (master)
$ cd Desktop
HP@PC MINGW64 ~/Desktop (master)
$ cd prework
HP@PC MINGW64 ~/Desktop/prework (master)
$
这有效: - )