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.
我正在尝试从 GitHub 克隆 HTML 5 Boiler Plate,但它在我的目录中创建了一个名为 html5bp 的文件夹。我想要做的是将内容直接克隆到目录中而不创建子目录。这是我正在使用的:
git clone http://github.com/h5bp/html5-boilerplate.git
我知道这是可能的,但我是使用 git 的新手,所以还不知道它的来龙去脉。
您可以指定目录(必须为空):
git clone http://github.com/h5bp/html5-boilerplate.git mydirectory
有关 git 命令的更多帮助,请尝试git help <command>,例如git help clone.
git help <command>
git help clone