前言
一直都是將MyClouds提交到gitee,今天想同時推送一份代碼到github去做爲備份。嘗試了一下仍是很方便的。
步驟
1. 打開工程根目錄下的.git\config配置文件。追加github相關配置。git
[remote "gitee"] url = https://gitee.com/osworks/MyClouds.git fetch = +refs/heads/*:refs/remotes/gitee/* [remote "github"] url = https://github.com/xiongchun/myclouds.git fetch = +refs/heads/*:refs/remotes/github/*
2. 執行git remote命令查看一下。正常的話應該顯示:gitee和github兩個遠程倉庫列表。github
3. 執行git push github或者git push gitee就能分別推送到不一樣的倉庫,也能夠同時批量推送。
後記:MyClouds開源開發平臺 https://gitee.com/osworks/MyCloudsbash