git 将 x 克隆为 "y" -(在本地重命名 repo)

git clone x as "y" - (renaming repo locally)

这里是 git clone

的文档

https://git-scm.com/docs/git-clone

通常我们会像这样克隆一个 repo

git clone x

但是,我想在本地重命名存储库,所以它类似于

git clone x as y

查看文档,不清楚这是否可行或是否符合标准,有谁知道如何做到这一点?

看起来像这样:

git clone x y

根据文档:

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

这将重命名 repo 文件夹。也就是说,克隆后你会做:

mv x y

是的,它是文档中的最后一个参数(目录)。

git clone your.reporitory yourownname

除此之外,您不需要做任何事情。 git-存储库没有 名称 除了它所在的目录。