我正在尝试使用以下命令将一个存储库(repo1)的内容移动到另一个现有的存储库(repo2):

git clone repo1
git clone repo2
cd repo1
git remote rm origin
git remote add repo1
git push

但这并不奏效。我看过一篇类似的文章,但我只发现一个人移动了文件夹,而不是内容。


当前回答

我不太确定我所做的是否正确,但无论如何它都起作用了。我重命名了repo1中的repo2文件夹,并提交了更改。在我的情况下,这只是一个回购,我想合并,所以这种方法是有效的。后来,进行了一些路径更改。

其他回答

我不太确定我所做的是否正确,但无论如何它都起作用了。我重命名了repo1中的repo2文件夹,并提交了更改。在我的情况下,这只是一个回购,我想合并,所以这种方法是有效的。后来,进行了一些路径更改。

我使用下面的方法通过维护所有分支和提交历史来将我的GIT Stash迁移到GitLab。

将旧的存储库克隆到本地。

git clone --bare <STASH-URL>

在GitLab中创建一个空存储库。

git push --mirror <GitLab-URL>

我认为您正在寻找的命令是:

cd repo2
git checkout master
git remote add r1remote **url-of-repo1**
git fetch r1remote
git merge r1remote/master --allow-unrelated-histories
git remote rm r1remote

之后,repo2/master将包含来自repo2/master和repo1/master的所有内容,并且还将包含它们的历史。

完美描述在这里https://www.smashingmagazine.com/2014/05/moving-git-repository-new-server/

首先,我们必须从现有的存储库中获取所有的远程分支和标签到我们的本地索引:

git fetch origin

我们可以检查任何缺失的分支,我们需要创建一个本地副本:

git branch -a

让我们使用新存储库的ssh克隆URL在现有的本地存储库中创建一个新的远程存储:

git remote add new-origin git@github.com:manakor/manascope.git

现在我们准备将所有本地分支和标签推到名为new-origin的新远程:

git push --all new-origin 
git push --tags new-origin

让我们把new-origin设为默认远程:

git remote rm origin

重命名new-origin为just origin,使其成为默认远程:

git remote rename new-origin origin

我做了什么:

克隆存储库到一个文件夹 cd现有项目 这里打开一个git终端 git remote set-url origin <NEW_GIT_REPO> Git push -u origin——all Git push origin—tags