我正在尝试从另一个目录克隆回购。

假设在C:/folder1和C:/folder2中有一个repo

我想把文件夹1中的工作复制到文件夹2中。

我应该在命令提示符中输入什么来完成此操作?

似乎通常在克隆URL时提供的是URL而不是文件路径,然而,此时此刻我只是在练习并尝试使用Git。


当前回答

这些对我都没用。我在windows上使用git-bash。 发现问题是我的文件路径格式。

错误的:

git clone F:\DEV\MY_REPO\.git

正确的:

git clone /F/DEV/MY_REPO/.git

这些命令是从您希望在其中显示repo文件夹的文件夹中执行的。

其他回答

值得一提的是,该命令在Linux上的工作原理类似:

git clone path/to/source/folder path/to/destination/folder

如果路径中有空格,请用双引号括起来:

$ git clone "//serverName/New Folder/Target" f1/

使用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.

这和看起来一样简单。

14:27:05 ~$ mkdir gittests
14:27:11 ~$ cd gittests/
14:27:13 ~/gittests$ mkdir localrepo
14:27:20 ~/gittests$ cd localrepo/
14:27:21 ~/gittests/localrepo$ git init
Initialized empty Git repository in /home/andwed/gittests/localrepo/.git/
14:27:22 ~/gittests/localrepo (master #)$ cd ..
14:27:35 ~/gittests$ git clone localrepo copyoflocalrepo
Cloning into 'copyoflocalrepo'...
warning: You appear to have cloned an empty repository.
done.
14:27:42 ~/gittests$ cd copyoflocalrepo/
14:27:46 ~/gittests/copyoflocalrepo (master #)$ git status
On branch master

Initial commit

nothing to commit (create/copy files and use "git add" to track)
14:27:46 ~/gittests/copyoflocalrepo (master #)$ 

这些对我都没用。我在windows上使用git-bash。 发现问题是我的文件路径格式。

错误的:

git clone F:\DEV\MY_REPO\.git

正确的:

git clone /F/DEV/MY_REPO/.git

这些命令是从您希望在其中显示repo文件夹的文件夹中执行的。