1、git倉庫遷移git
1,從原倉庫clone或pull到本地倉庫服務器
git clone project_name 【old_remote_repository_address】url
2,在新的git建立一個新倉庫。若是用gitolite搭建的git服務器,那麼只須要在配置文件gitolite.conf上添加倉庫和用戶,而後push到服務器便可。rem
3,進入clone下來的本地倉庫目錄,將遠程倉庫地址修改成新的遠程倉庫地址it
project_name> git remote remove originast
project_name> git remote add origin【new_remote_repository_address】配置
4,將本地倉庫文件push到新的遠程倉庫方法
project_name> gitpush origin master配置文件
2、修改遠程倉庫地址文件
兩種方式,除了上面第3步的修改方法,還能夠:
git remote set-url origin 【new_remote_repository_address】