标签: git push clone mirror
假设我从远程A克隆了一个repo,现在我希望所有Remote A分支都克隆到Remote B repo。我曾尝试使用git push --mirror但它没有用。我该如何解决这个问题?
git push --mirror
答案 0 :(得分:9)
设置新原点后:
git remote set-url origin git://new.url.here
我用过:
git push origin refs/remotes/origin/*:refs/heads/*