'git pull'和'git fetch'有什么区别?

编程入门 行业动态 更新时间:2024-10-27 14:32:25
本文介绍了'git pull'和'git fetch'有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

git pull 和 git fetch ?

git pull 后面跟着一个 git merge 。

你可以做一个 git fetch 随时在 refs / remotes /< remote> / 下更新您的远程追踪分行。

此操作不会在 refs / heads 下改变您自己的任何本地分支,并且在不更改工作副本的情况下安全无虞。我甚至听说有人在后台执行cron作业时定期运行 git fetch >(尽管我不建议这样做)。

git pull 是您将本地分支带到远程版本的最新版本,同时还会更新您的其他远程跟踪分行。

Git文档: git pull

What are the differences between git pull and git fetch?

解决方案

In the simplest terms, git pull does a git fetch followed by a git merge.

You can do a git fetch at any time to update your remote-tracking branches under refs/remotes/<remote>/.

This operation never changes any of your own local branches under refs/heads, and is safe to do without changing your working copy. I have even heard of people running git fetch periodically in a cron job in the background (although I wouldn't recommend doing this).

A git pull is what you would do to bring a local branch up-to-date with its remote version, while also updating your other remote-tracking branches.

Git documentation: git pull

更多推荐

'git pull'和'git fetch'有什么区别?

本文发布于:2023-11-24 19:03:38,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1626452.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:有什么区别   git   fetch   pull

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!