如何将 GitHub 中的存储库加载/打开/吸收到 GitX 中?
我下载了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的是
git clone
操作。它创建指定存储库的本地副本(克隆)。其语法最基本的形式如下:
它将位于
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:
which will clone the remote repo located at
git://path.to/repository/with/project.git
into a local repository in the foldersomelocalname
.