Importing one git repo as a branch into another git repo

前端 未结 3 677
予麋鹿
予麋鹿 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:39

    I am not sure, what you mean by "git project". In git the states of source code are described by commits (a.k.a. revisions). These are stored in repositories, but are independent of the them and can be copied between repositories freely. In fact, to work on the sources git always copies the commits to your local repository that lives in the .git directory of your working copy. Branches are just names pointing to commits.

    So if you have some branches in one repository and other branches in another repository, you can:

    1. Pull both into your local working repository:

      git remote add B git://url.to/project.B.git
      git fetch B
      
    2. Base your work on branches from B

      git checkout -b newname remotes/B/branchname
      
    3. Push the branches you got from one central repository to the other:

      git push origin remotes/B/branchname:branchname
      

      or the other way around

      git push B remotes/origin/master:othername
      

    You can omit the remotes/ prefix most of the time.

提交回复
热议问题