13

如何更改特定 git 的克隆文件夹?我的默认存储目录在这里

C:\Users\myPC\Documents\GitHub

但是对于这个 git

https://github.com/username/myproject

我想把它放进去

C:\somefolder

不像C:\ somefolder \myproject而是C:\somefolder下的所有文件)

怎么做?我尝试git clone了命令行,但 git 没有出现在我的 Github for Windows 客户端中

对不起,基本问题,但无法谷歌或在这里搜索任何答案!

4

6 回答 6

5

After you have manually cloned the repository with git clone, you can manually Add a local repository to Github for Windows (I can't take a screenshot right now because I'm on another machine, but it should be relatively easy to find). I honestly don't know, though, if this will then have the full set of features (i.e. if GhfW recognizes it as a Github clone), or if it will have the reduced "regular" set for repositories in general.

As always: Try it and see! :D

于 2012-12-20T07:42:53.587 回答
1

我尝试过的另一个选项是使用“Create repo”命令在您选择的文件夹中创建一个(空)存储库,然后通过以下方式将其连接到 Github:

  1. 打开存储库设置(单击右上角的齿轮,选择“存储库设置...”)
  2. 将 HTTPS 克隆 URL 从 Github 页面(在右侧边栏中)复制并粘贴到“主要远程(来源)”字段中
  3. 将 repo 与新附加的源同步。您可能需要在 shell 中打开它才能正常工作。

为什么 Github 不让这更容易,我不知道。这个问题发布两年后,仍然很麻烦。有一个默认的存储目录很好,但是有一个“你想把这个保存在哪里?”也很好。选项。

最后,如果你确实克隆了一个 repo 到错误的地方,并想把它移到其他地方:

  1. 在资源管理器中打开存储库(如果您不确定它在本地文件系统上的位置,请使用 Windows 版 Github 上的小齿轮图标中的“在资源管理器中打开”选项)。
  2. 将整个文件夹剪切并粘贴到您想要的任何位置。
  3. 返回到 Windows 版 Github。它现在会给您一条错误消息,指出它无法找到存储库。选择“定位”选项,然后自己找到文件夹的新位置。

这实际上可能是在你想要的地方获取 repo 的最简单的选择。

于 2015-01-05T03:46:07.717 回答
1

在“GitHub for Windows”中,首先转到“工具”->“选项”,在这里选择“默认存储目录”中的文件夹。现在在 GitHub 中,如果您单击“在桌面中克隆”按钮,那么它将克隆到选定的文件夹中

于 2014-04-07T12:45:16.860 回答
1

最新的 GitHub 桌面客户端 (3.3.4.0) 提示输入本地目录以将存储库克隆到。这是在将我自己的仓库从 github.com 克隆到本地时。

于 2017-09-29T09:13:31.463 回答
0

我最近下载了适用于 Windows 的 GitHub,但它没有附带 option Add a local repository

我不得不在 Windows 资源管理器中克隆删除该文件夹。
该程序为此存储库提供和错误,以及找到新文件夹或删除的选项。
找到您想要的文件夹。

于 2014-06-20T01:37:50.630 回答
0

cd只需通过命令更改 git bash 中的工作目录即可。完成后,您可以检查是否要下载/克隆您的 git repopwd命令的目录。现在您可以将 repo 克隆到所需的文件夹中。像往常一样用于git clone克隆存储库。

希望这可以帮助。

于 2016-11-21T15:06:42.463 回答