博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git分支操作
阅读量:5101 次
发布时间:2019-06-13

本文共 528 字,大约阅读时间需要 1 分钟。

情景:两台机器公用一个账户同步操作。

1.   PC1本地分支push到远端

  git co -b local-br-name

  some changes

  commit

  git push remote-name(origin) local-br-name:remote-br-name(if remote is omitted, same as local will be applied)

2.   PC2获取远端分支

  git co -b local-br-name remote-name/remote-br-name

  some changes

  commit

  git push(master br on local/remote will not change)

3.   PC1获取更新

  git pull remote-name(origin) remote-br-name

 

如果使用git pull错误的merge了远端分支到local分支上,使用git reset HEAD^放弃修改(commit log里面也一并删除)

转载于:https://www.cnblogs.com/jackpang/p/3547410.html

你可能感兴趣的文章
宝塔部署项目
查看>>
如何终止线程的运行(C/C++)
查看>>
"远程桌面连接--“发生身份验证错误。要求的函数不受支持
查看>>
【BZOJ1565】 植物大战僵尸
查看>>
视频:"我是设计师"高清完整版Plus拍摄花絮
查看>>
sicp solutions
查看>>
mysql数据库常用命令
查看>>
VALSE2019总结(4)-主题报告
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
PhotoZoom放大图片,真的能无损吗?
查看>>
转载分享移动网站最佳实践
查看>>
spark--环境搭建--4.ZooKeeper345集群搭建
查看>>
【Leetcode_easy】1103. Distribute Candies to People
查看>>
Codeforces Round #426 (Div. 2) C. The Meaningless Game
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
leetcode - Next Permutation
查看>>
C#创建Windows服务程序
查看>>
Spring Boot 2.0系列文章(五):Spring Boot 2.0 项目源码结构预览
查看>>
中国烧鹅系列:利用烧鹅自动执行SD卡上的自定义程序(含视频)
查看>>
Solaris11修改主机名
查看>>