Git 情境劇:push 私人倉庫到 github

情境說明:有一個簡單的範例專案,本來放在我私人的 git remote repo,但是我現在要將這個專案 push 到 github 上。

圖示說明:

在 github 上建立專案的動作就跳過不說了

建立好 github 上的專案之後

在 local repo 上執行

git remote add github MY_GITHUB_REPO

這樣 local repo 就會有兩個 remote repo,一個是原本 origin 另外一個是 github

接著 pull origin 跟 github 回 local repo,這裡記得 github 要加上 master,這樣才會將 github 上的 repo pull 回 local repo 的 master.

git pull
git pull github master

接著再 push repo 到 github 上就可以了

git push github master

參考資料

Follow 院長與芊比媽 on Google News