如何只将一个git repo中的单个分支复制到另一个?

时间:2018-03-15 02:20:51

标签: git github repository bitbucket bitbucket-server

我使用以下步骤将所有分支复制到新存储库。

git clone --bare https://github.com/exampleuser/old-repository.git
# Make a bare clone of the repository

cd old-repository.git
git push --mirror https://github.com/exampleuser/new-repository.git
# Mirror-push to the new repository

现在,我在old-repository.git添加了两个新分支,并希望仅将这两个分支移至new-repository.git

执行它需要什么git命令?

2 个答案:

答案 0 :(得分:4)

您可以将new_repo添加为旧存储库的遥控器:这对于推送更方便:

cd old_repo
git remote add new /path/to/new/repo
git push new newBranch1
git push new newBranch2

答案 1 :(得分:0)

克隆旧分支

git clone --single-branch --branch branch_name github_repo_url

告诉git您的仓库在哪里:

git remote add mine your_repo_url

然后,使用以下命令将分支推送到您的仓库:

git push -u mine