0

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

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

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

4

1 回答 1

1

所以,你只想从你的仓库中获取所有东西?去做。

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

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

于 2013-08-16T23:54:40.000 回答