1,單分支倉庫遷移 2, 一次性遷移所有倉庫 checkout 所有需要遷移的分支到本地舊倉庫; $ git push --mirror [email protected]:XXXX.git 參考鏈接:http://www.ruanyifeng.com/blog/2014/06/git_remote.h ...
1,單分支倉庫遷移
$ git remote -v //git remote
命令列出所有遠程主機。 使用-v
選項,可以參看遠程主機的網址
$ git remote rm origin // 刪除本地舊倉庫
當前分支鏈接的遠端 (實質 "origin branch" 並沒有改變, 只是本地的改變了)
$
git remote set-url origin remote_git_address //remote_git_address更換成你的新的倉庫地址
同 $ git remote add origin [email protected]:XXXX-XXXX
$ git push origin brach_name
2, 一次性遷移所有倉庫
checkout 所有需要遷移的分支到本地舊倉庫;
$ git push --mirror [email protected]:XXXX.git
參考鏈接:http://www.ruanyifeng.com/blog/2014/06/git_remote.html
http://www.cnblogs.com/developer-qin/tag/git/