使用 GIT 从存储库中获取特定文件

发布于 2024-09-24 11:44:00 字数 164 浏览 3 评论 0原文

我想从远程 git 存储库签出单个文件。

有没有办法从远程 git 存储库签出单个文件,而不签出其他提交?

编辑:

根据答案,我意识到我可以执行 git fetch,然后执行 git checkout origin/branch path/to/file,效果很好。

I would like to checkout a single file from a remote git-repository.

Is there a way to checkout a single file from a remote git-repository, without checking out the other commits?

EDIT:

Following the answers, I've realized that i can do a git fetch, and then a git checkout origin/branch path/to/file, which works great.

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

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

发布评论

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

评论(1

虫児飞 2024-10-01 11:44:00

这个类似的问题显示了一些解决方案,包括<代码>git show 和git cat-file

git show rev:path/to/file

如果您想将内容检索到文件中,则需要适当地重定向 stdout

This similar question shows a few solutions, including git show and git cat-file.

git show rev:path/to/file

If you want to retrieve the contents into a file, you'll need redirect stdout appropriately.

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