在 git fetch 中指定分支

发布于 2024-11-27 15:13:08 字数 105 浏览 0 评论 0原文

发行时的branch参数是什么意思

git fetch <remote_repo> <branch>

What does the branch parameter mean when issuing

git fetch <remote_repo> <branch>

?

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

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

发布评论

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

评论(2

遇到 2024-12-04 15:13:08

分支参数是您要获取的分支的名称。

请参阅 git 文档中的示例:
http://www.kernel.org/pub/software /scm/git/docs/git-fetch.html

git fetch origin +pu:pu maint:tmp

这通过从远程存储库(分别)获取 pu 和 maint 来更新(或根据需要创建)本地存储库中的分支 pu 和 tmp。

pu分支即使不快进也会更新,因为它的前缀是加号; tmp 不会。

The branch parameter is the name of the branch in your that you are going to fetch.

See an example in the git docs:
http://www.kernel.org/pub/software/scm/git/docs/git-fetch.html

git fetch origin +pu:pu maint:tmp

This updates (or creates, as necessary) branches pu and tmp in the local repository by fetching from the branches (respectively) pu and maint from the remote repository.

The pu branch will be updated even if it is does not fast-forward, because it is prefixed with a plus sign; tmp will not be.

短暂陪伴 2024-12-04 15:13:08

对于此类问题,您应该阅读手册 。要回答您的问题,“git fetch”将获取您为该存储库配置的所有远程分支。这是由 .git/config 中该存储库的条目控制的。添加“<分支>”仅获取一个分支,该分支甚至可能不是您远程跟踪的分支。

You should read the manual for questions like this. To answer your question, "git fetch < remote_repo>" will fetch all the of the remote branches you have configured for that repo. This is controlled by the entry for that repo in .git/config. Adding "< branch>" fetches only one branch, which might not even be one that you are remote tracking.

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