本地專案在github和coding上同步

2021-10-04 09:28:35 字數 943 閱讀 2551

用過一段時間的github,一直挺順暢,突然用上了coding,略不適應,因此把coding和github上的遠端倉庫統一同步.

之前設定過ssh key,其值放在目錄/.ssh/id_rsa.pub中,注意不是id_rsa,把id_rsa.pub檔案中的ssh值放入

此時已經在github和coding中已經設定好了ssh,用git remote set-url命令實現二者的同步

$git remote add both [email protected]:user/project.git
$git remote set-url --add --push both [email protected]:user/project.git

# 為其新增 push 到 coding 的 ssh 位址

$git remote set-url --add --push both [email protected]:user/repo.git

# 為其新增 push 到 github 的 ssh 位址

$git remote -v #檢視當前遠端倉庫

origin [email protected]:user/project.git (fetch)

origin [email protected]:user/project.git (push)

github [email protected]:user/repo.git (fetch)

github [email protected]:user/repo.git (push)

之後在推送的時候用git push both實現二者同步更新

可以參考這篇文章

在GitHub中上傳本地專案

6 這時候你的本地專案資料夾下面就會多出個資料夾,該資料夾名即為你github上面的專案名,如圖我多出了個test資料夾,我們把本地專案資料夾下的所有檔案 除了新多出的那個資料夾不用 其餘都複製到那個新多出的資料夾下,test為倉庫名 git add.注 別忘記後面的.此操作是把test資料夾下面的...

Github初學 本地專案上傳github

以下 操作是在windows系統下完成的,linux下情況不詳 第一步 建立git倉庫 cd到你的本地專案根目錄下,執行git命令 git init第二步 將專案的所有檔案新增到倉庫中 git add 如果想新增某個特定的檔案,只需把.換成特定的檔名即可 第三步 將add的檔案commit到倉庫 g...

github的本地配置和專案建立

之前完成了github的安裝和賬號的註冊,接下來要進行專案的建立和本地 倉庫的建立 1.建立專案 2.填寫專案相關資訊 注意 在給專案起名時,盡量起一些有意義的名字,否則會被管理員刪除。因為伺服器上有很多人的 方便管理請規範起名。3.成功建立,生成ssh公鑰 滑鼠右鍵 選擇 git bash her...