git 拉取最新版本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 拉取最新版本相关的知识,希望对你有一定的参考价值。
1.查看远程仓库
git remote -V
2.拉取最新代码
git fetch orinig master:temp
获取到最新的代码 并且在本地创建一个temp的分支
3.查看本地分支 和 temp的区别
git diff temp
4.将本地分支和temp 合并
git merge temp
现在的本地代码和远程代码是一样的了
5.上面我们创建的temp分支 也是可以删除的
git branch -d temp
6.提交最新版本的代码
git commit -am “uklele” //提交并且注释 git push origin master
以上是关于git 拉取最新版本的主要内容,如果未能解决你的问题,请参考以下文章