码迷,mamicode.com
首页 > 其他好文 > 详细

git 开发merge rebase 记录

时间:2016-06-13 19:12:38      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

  519  git status     
  520  git lg
  521  git add src/
  522  git commit -m "restful api and portal"  //先commit到自己的本地branch
  523  git lg
  524  git fetch -p   //origin的commit都会拉到本地
  525  git lg
  526  git rebase origin/develop    //rebase到branch
  527  git status
  528  git lg
  529  git status
  530  git add src/
  531  git commit -m "rebase origin develop" //解决冲突,然后再commit
  532  git lg
  533  git diff 107b458 HEAD
  534  git diff HEAD~1 HEAD
  535  git lg
  536  git branch 
  537  git push origin yhh
  538  git branch
  539  git lg
  540  git branch aaa    //随便建立一个分支
  541  git lg
  542  git checkout yhh   //到自己的开发分支
  543  git reset --hard aaa  //然后强制替换
  544  git lg
  545  git push -f     //push 到 origin的自己开发分支
  546  git lg
  547  git checkout develop  //然后develop merge回来
  548  git merge yhh
  549  git push -f   //更新 origin/develop分支
  550  git lg

 

git 开发merge rebase 记录

标签:

原文地址:http://www.cnblogs.com/yanghuahui/p/5581556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!