如何將MyClouds開源項目同時提交到gitee和github代碼託管平臺上去

前言
一直都是將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

相關文章
相關標籤/搜索