将具有旧提交历史记录的本地git仓库复制到新的远程仓库

时间:2016-09-17 14:21:05

标签: git

在我的本地仓库中,我可以使用命令git log

查看10次提交

我想将此状态复制到新的空远程仓库进行备份。

当我尝试git push -u newRemote --all时,它会推送旧远程仓库的状态,而不是本地仓库。

我在旧的远程仓库中只提交了一次,这就是推送后我的newRemote中的内容。

请帮忙。

更新我的.git / config文件

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "oldRemote"]
        url = git@bitbucket.org:kickbox/mp2.git
        fetch = +refs/heads/*:refs/remotes/oldRemote/*
[remote "newRemote"]
        url = git@bitbucket.org:kickbox/newRemote.git
        fetch = +refs/heads/*:refs/remotes/newRemote/*

0 个答案:

没有答案