git将所有远程分支推送到新的原点

时间:2015-07-17 16:25:32

标签: git push clone mirror

假设我从远程A克隆了一个repo,现在我希望所有Remote A分支都克隆到Remote B repo。我曾尝试使用git push --mirror但它没有用。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:9)

设置新原点后:

git remote set-url origin git://new.url.here

我用过:

git push origin refs/remotes/origin/*:refs/heads/*