本篇內容主要講解“項目同步兩個git倉庫后如何同時傳到gitee和github”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“項目同步兩個git倉庫后如何同時傳到gitee和github”吧!
有時候我們為了保證倉庫代碼安全,可能將git代碼傳送到兩個不同的git代碼倉庫。接下來演示下如何進行操作:
首先創立兩個倉庫
#假定創建好的兩個倉庫地址分別為: https://gitee.com/cigoos/mycode.git https://github.com/cigoos/mycode.git
先從其中一個倉庫檢出代碼
git clone https://gitee.com/cigoos/mycode.git
刪除倉庫origin
git remote rm origin
關聯兩個遠程倉庫
# 關聯gitee git remote add gitee https://gitee.com/cigoos/mycode.git git push gitee master # 關聯github git remote add github https://github.com/cigoos/mycode.git git push github master
# 注意此時如果遇到下述問題 To https://github.com/CigoOS/cigoadmin_tp5.git ! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/cigoos/mycode.git' hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing hint: to the same ref. You may want to first integrate the remote changes hint: (e.g., 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details. # 此時要先執行 git pull github master --allow-unrelated-histories
刪除分支
git push origin --delete dev git branch -D dev
檢出本地分支
#基于gitee/master創建本地分支gitee git checkout -b gitee/master gitee
合并分支
git merge --squash dev --allow-unrelated-histories
到此,相信大家對“項目同步兩個git倉庫后如何同時傳到gitee和github”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。