vim .git/config [remote "origin"] url = git@xxx.com:xxx/xxx.git [remote "new"] url = git@xxx.com:xxx/xxx.git
git push new 'refs/remotes/origin/*:refs/heads/*' # 推送全部branch、commit記錄 git push new --tags # 推送全部tags