我们有一个带有旧引用的git项目,不再存在。
我想将此存储库推送到该项目的github上的新分支。https://github.com/rubo77/ffmap-d3
我认为最好的方法是创建一个新的分支并将该分支推送到我的github:
git branch ffki
git checkout ffki
如何将该分支推入我的github?
我的.git/config
:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[branch "master"]
remote = origin
merge = refs/heads/master
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git://github.com/toppoint/ffmap-d3.git
pushurl = git@github.com:toppoint/ffmap-d3.git
[remote "rubo77"]
url = https://github.com/rubo77/ffmap-d3.git
fetch = +refs/heads/*:refs/remotes/rubo77/*
答案 0 :(得分:1)
您应该输入:
$ git push origin ffki
这将创建" ffki"远程分支,包含所有新的更改。
如果你想把它推到" rubo77":
$ git push rubo77 ffki