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.
我正在通过 Pro Git 书学习 Git。 要开始设置,它会告诉打开终端并git init在我要开始修订的项目上执行。
git init
问题是:只有当我在我的主目录中执行此命令时,它才能成功创建一个 .git 隐藏文件夹(\Users\<username>)。
(\Users\<username>)
如果我将所需的文件夹拖到终端并写入,git init我会收到错误:is a directory。 这意味着什么? 我已经阅读了很多指南,但似乎没有人帮助我。
如何通过终端成功设置 Git?链接问题的说明没有帮助。
git init在您所在的文件夹中创建一个项目。因此,首先创建一个新文件夹并在该文件夹中进行更改。
mkdir test cd test git init
您可以在最后一个示例的文档中找到它:
https://git-scm.com/docs/git-init