Importing one git repo as a branch into another git repo

前端 未结 3 730
予麋鹿
予麋鹿 2021-02-01 21:20

For historic reason we have source code for different version in different git repositories. So while Project A holds the version X of the source Project B holds version Y of th

3条回答
  •  天涯浪人
    2021-02-01 21:47

    1. First clone project A from git hub

    git clone {git hub Project A URL}

    1. Add remote repository path of project B

    git remote add projectBrepo {git hub project B URL}

    1. project B branches will be fetched

    git fetch projectBrepo

    1. check the all branches from project A and project B

    git branch -v -a

    1. check-out each branch name from project B (ex:master, branch_name1)

    git checkout -b master_old remotes/projectBrepo/master

    1. Push the master branch from project B to project A as master_old

    git push origin master_old

    1. check-out branch_name1 from project B

    git checkout -b branch_name1 remotes/projectBrepo/branch_name1

    1. Push the brnach_name1 from project B to project A

    git push origin branch_name1

提交回复
热议问题