如何使用 Git 下载文件
如何从我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否只是在寻找从远程存储库获取最新信息的能力?如果是这样,那就是:
其中 origin 是远程名称,master 是分支名称。
Are you just looking for the ability to get latest from the remote repo? If so it's just:
where origin is the remote and master is the branch name.
只需使用 git clone 即可。
Just use
git clone
.