我正在尝试从另一个目录克隆回购。
假设在C:/folder1和C:/folder2中有一个repo
我想把文件夹1中的工作复制到文件夹2中。
我应该在命令提示符中输入什么来完成此操作?
似乎通常在克隆URL时提供的是URL而不是文件路径,然而,此时此刻我只是在练习并尝试使用Git。
我正在尝试从另一个目录克隆回购。
假设在C:/folder1和C:/folder2中有一个repo
我想把文件夹1中的工作复制到文件夹2中。
我应该在命令提示符中输入什么来完成此操作?
似乎通常在克隆URL时提供的是URL而不是文件路径,然而,此时此刻我只是在练习并尝试使用Git。
当前回答
值得一提的是,该命令在Linux上的工作原理类似:
git clone path/to/source/folder path/to/destination/folder
其他回答
我在windows中使用git-bash。
最简单的解决方案是将源文件夹路径中的\替换为斜杠(/):
例如:c:\dev\source将变成c:/dev/source
在目标文件夹上启动git-bash。 使用向前斜杠的源文件夹路径运行git克隆: Git克隆c:/dev/source
值得一提的是,该命令在Linux上的工作原理类似:
git clone path/to/source/folder path/to/destination/folder
这些对我都没用。我在windows上使用git-bash。 发现问题是我的文件路径格式。
错误的:
git clone F:\DEV\MY_REPO\.git
正确的:
git clone /F/DEV/MY_REPO/.git
这些命令是从您希望在其中显示repo文件夹的文件夹中执行的。
使用git克隆c:/folder1 c:/folder2
git clone [--template=<template_directory>] [-l] [-s] [--no-hardlinks]
[-q] [-n] [--bare] [--mirror] [-o <name>] [-b <name>] [-u <upload-pack>]
[--reference <repository>] [--separate-git-dir <git dir>] [--depth <depth>]
[--[no-]single-branch] [--recursive|--recurse-submodules] [--]<repository>
[<directory>]
<repository>
The (possibly remote) repository to clone from.
See the URLS section below for more information on specifying repositories.
<directory>
The name of a new directory to clone into.
The "humanish" part of the source repository is used if no directory
is explicitly given (repo for /path/to/repo.git and foo for host.xz:foo/.git).
Cloning into an existing directory is only allowed if the directory is empty.
如果路径中有空格,请用双引号括起来:
$ git clone "//serverName/New Folder/Target" f1/