赞
踩
git commit -m "提交信息"
git log
前提要先命令行输入上一方法的命令
):git log
git reset --hard id
git push 地址 分支 --force
参考链接:https://www.jianshu.com/p/4c1d3b741b19
背景: 在多人协同开发中,我们经常会遇到这样的问题:A在本地开发完成后,将代码推送到远程,这时候B的本地代码的版本就低于远程代码的版本,这时候B该如何从远程拉取最新的代码,并与自己的本地代码合并呢?
git remote -v
git fetch origin master:temp
上面代码的意思是:从远程的origin仓库的master分支下载到本地master并新建一个temp分支
注意:不建议使用pull拉取最新代码,因为pull拉取下来后会自动和本地分支合并
获取最新版本 有两种 拉取 和 获取 pull 和 fetch
git pull 从远程拉取最新版本 到本地 自动合并 merge git pull origin master
git fetch 从远程获取最新版本 到本地 不会自动合并 merge git fetch origin master git log -p master …/origin/master git merge orgin/master
实际使用中 使用git fetch 更安全 在merge之前可以看清楚 更新情况 再决定是否合并
git diff temp
git merge temp
现在,B的本地代码已经和远程仓库处于同一个版本了,于是B可以开心coding了。
最后再提一下,上面的步骤中我们创建了temp分支,如果想要删除temp分支,也是可以的,命令如下:
git branch -d temp
git push origin 远程分知名:本地分支名
将上一步远程分知名置空即可
git push origin :本地分知名
git branch -a (clone下来的文件夹gitbash才能看见远程分支)
git remote add origin https://…
更改现有远程存储库URL:git remote set-url origin git@github.com:User/UserRepo.git
查看现有遥控器:git remote -v
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。