如何使用 Git 下载文件

发布于 2024-12-11 15:55:50 字数 68 浏览 0 评论 0原文

如何从我的 Git 存储库下载?

我可以上传并提交我的源代码,但是,我不知道从我的存储库下载。我该怎么做?

How I can download from my repository at Git?

I can upload and commit my sources, but, I don't know download from my repository.How I can this?

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

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

发布评论

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

评论(2

傲世九天 2024-12-18 15:55:50

您是否只是在寻找从远程存储库获取最新信息的能力?如果是这样,那就是:

git pull origin master

其中 origin 是远程名称,master 是分支名称。

Are you just looking for the ability to get latest from the remote repo? If so it's just:

git pull origin master

where origin is the remote and master is the branch name.

夏尔 2024-12-18 15:55:50
git clone git://git.kernel.org/pub/scm/.../linux-2.6

只需使用 git clone 即可。

git clone git://git.kernel.org/pub/scm/.../linux-2.6

Just use git clone.

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