Git:将现有仓库复制到新分支

时间:2013-08-16 21:55:20

标签: git repository

我需要将现有的git存储库复制到现有git存储库上的新分支 我试过了

git branch new_branch
git checkout new_branch
git remote add project url/to/existing/repo
git fetch

但它不起作用,我需要保留提交历史记录:)

1 个答案:

答案 0 :(得分:1)

那么,您只想从您的回购中获取所有内容?那样做。

git remote add existing url/to/existing/repo
git fetch existing

然后为您关心的任何内容添加跟踪分支。