Git Clone在Windows 7上的默认目录

我想在Windows 7上从本地克隆github目录。所以我使用了下面的命令 -

git clone git://github address

我期待它会被下载到当前目录下,该目录是c:/windows/system32

命令的输出如下 -

C:WINDOWSsystem32>git clone https://github.com/Hvass-Labs/TensorFlow-Tutorials
.git
Cloning into 'TensorFlow-Tutorials'...
remote: Counting objects: 338, done.
rRemote: Total 338 (delta 0), reused 0 (delta 0), pack-reused 338eceiving object
Resolving deltas:   0% (0/158)
Resolving deltas: 100% (158/158), done.
Checking connectivity... done.
Checking out files: 100% (96/96), done.

但克隆的目录不在路径中。 系统中绝对没有。 我尝试了当前目录,整个C驱动器和整个D驱动器。 但没有运气。 该存储库非常庞大,所以我不想再次尝试克隆。 :(

有人可以告诉我在哪个目录下Git克隆下载Windows 7上的github目录?


默认情况下,git克隆当前文件夹的子目录中,并克隆存储库的名称。

这里应该是C:WINDOWSsystem32TensorFlow-Tutorials

如果你想克隆当前目录,你应该添加一个'。'。 以表明您想要克隆当前文件夹。

但该文件夹应该是空的。

此外,克隆在Windows系统文件夹中的做法非常糟糕,而不是您尝试做的...喜欢在您的个人文件夹中克隆并在需要时在PATH中添加文件夹...


最后它使用以下命令。

D:> git clone https://github.com/Hvass-Labs/TensorFlow-Tutorials d: tensorflow克隆到'd: tensorflow'中... remote:计数对象:338,完成。 远程:总计338(delta 0),重用0(delta 0),包重用338接收对象:100%(338/338),55.66 MiB | 1.10 MiB / s,完成。 解决三角洲问题:完成100%(158/158)。 检查连接...完成。 检出文件:100%(96/96),完成。

所以它似乎没有system32文件夹的权限。 但是它应该抛出错误。

链接地址: http://www.djcxy.com/p/90501.html

上一篇: Git Clone default directory on Windows 7

下一篇: Change the name of a git repository on the local machine