在我的本地仓库中,我可以使用命令git log
我想将此状态复制到新的空远程仓库进行备份。
当我尝试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/*