更新远程文件到本地方式一
查看远程仓库
git remote -v
从远程获取最新版本到本地
git fetch origin tmp
比较远程分支和本地分支
git log -p aaa origin/tmp
合并远程分支到本地
git merge origin/tmp
远程文件到本地方式二,在本地建临时分支,合并后删除文章来源:https://www.toymoban.com/news/detail-803132.html
查看远程仓库
git remote -v
从远程获取最新版本到本地
git fetch origin master:tmp
比较远程分支和本地分支的区别
git diff tmp
合并远程分支到本地
git merge tmp
使用pull更新 git pull origin aaa
文章来源地址https://www.toymoban.com/news/detail-803132.html
到了这里,关于【git】git更新远程分支到本地的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!