标签:仓库 master 注释 sha nbsp commit arp git fetch
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
标签:仓库 master 注释 sha nbsp commit arp git fetch
原文地址:http://www.cnblogs.com/uklele/p/7639471.html