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

合并两个git repository

时间:2019-08-03 11:02:14      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:git merge   merge   htm   本地   tor   check   http   pos   repo   

以repo1合并到repo2为例,总体来说有4步:

在repo2 clone到本地的代码目录中:

 1. git remote add repo1 <repo1地址>

  2. git fetch repo1

  3.  git branch repo1 repo1/master  (仍在master branch) 或者git checkout -b repo1 repo1/master (会进入到repo1branch)

  4. 在master branch执行: git merge repo1

 

参考文章

https://www.cnblogs.com/drizzlewithwind/p/8951910.html

https://www.jianshu.com/p/da2ba8bb0448

 

合并两个git repository

标签:git merge   merge   htm   本地   tor   check   http   pos   repo   

原文地址:https://www.cnblogs.com/i-shu/p/11293786.html

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