如何将 GitHub 中的存储库加载/打开/吸收到 GitX 中?

发布于 2024-08-31 08:01:21 字数 358 浏览 6 评论 0原文

我下载了 Mac 版的 Git 和 GitX 并安装了它。现在,只是为了好玩,我想知道如何从 GitHub 获取存储库,例如 http://github .com/zoul/Finch.git ??

对我来说,所有这些 Git 东西看起来就像我有一个客户端并连接到服务器以便从某个存储库获取一些数据。就像 FTP 一样,但其实不是。但类似。

只有一个问题:在哪里输入该 URL?有一些领域吗?一些隐藏命令?我确实设法在我的 mac 上创建了一个新项目/存储库,但现在我有一个空窗口,并且无法选择从 GitHub 获取该代码。

I downloaded Git and GitX for mac and installed it. Now, just for fun, I want to know how I could obtain an repository from GitHub like http://github.com/zoul/Finch.git ??

For me all this Git stuff looks like I have a client and connect to a server in order to get some data from some repository. Like FTP, well not really. But similar.

Just one problem: Where to enter that URL? Is there some field for that? Some hidden command? I did manage to create a new project / repository on my mac, but now I have an empty window and no option to suck down that code from GitHub.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乄_柒ぐ汐 2024-09-07 08:01:21

您正在寻找的是 git clone 操作。它创建指定存储库的本地副本(克隆)。

其语法最基本的形式如下:

git clone git://path.to/repository/with/project.git somelocalname

它将位于 git://path.to/repository/with/project.git 的远程存储库克隆到文件夹 < 中的本地存储库中。代码>某个本地名称。

What you're looking for is the git clone operation. It creates a local copy of (clones) a specified repository.

The very most basic form of its syntax is as follows:

git clone git://path.to/repository/with/project.git somelocalname

which will clone the remote repo located at git://path.to/repository/with/project.git into a local repository in the folder somelocalname.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文