如何从 Git 中央存储库更新特定文件夹/文件?

发布于 2024-11-10 00:57:04 字数 56 浏览 1 评论 0原文

有没有办法在 Git 中单独更新文件夹或文件?我已从中央存储库克隆并希望仅更新特定的文件夹/文件。

Is there a way to update folder or file alone in Git? I had cloned from central repository and wish to update only specific folder/files.

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

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

发布评论

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

评论(2

魔法少女 2024-11-17 00:57:04

您可以使用 git fetch 更新本地克隆中的对象,然后可以 git checkout 这些特定文件。

例如 - 如果您的远程称为 origin 并且您只想从 master 分支更新 main.c ,您可以执行以下操作:

git checkout origin/master main.c

这将更新工作目录中的文件并将其添加到准备就绪的索引中致力于您当地的分支机构。

you can use git fetch to update the objects in your local clone, and then you can git checkout those particular files.

For example - if your remote is called origin and you only want to update main.c from the master branch you can do this:

git checkout origin/master main.c

This will update the file in your working directory and add it to the index ready to be committed on your local branch.

假扮的天使 2024-11-17 00:57:04

不可以,您只能获取/拉取提交,这将影响整个存储库。

No, you can only fetch/pull commits, which will affect the entire repository.

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