在Ubuntu底下快速安裝git遠端儲存庫(repository)



1.登入遠端
ssh ubuntu@diyland.com

2.使用git建立專案目錄
git --bare init hello.git

3.離開回到本機端

4.切換至專案目錄內,建立本地端儲存庫(如果本地端已建有儲存庫可略過本步驟。)
git init
  如此即會建立一個.git的目錄夾。
 
  把所有檔案加入本地端儲存庫的備存序列。
git add .
 
   更新開發者資訊:
   git config --global user.name " Your Name"
   git config --global user.email " you@example.com"

  正式commmit至本地端儲存庫。
git commit -m " My first backup"

5. 新增遠端儲存庫的連結
git remote add diyland ssh://ubuntu@diyland.com/home/ubuntu/hello.git

6.將資料push上去
git push diyland master

7.登入遠端確認輸出結果。
ssh ubuntu@diyland
git log


如果要讓git同時push兩個remote repo,只要在 .gt/config 加入:
[remote " origin" ]
url = ssh://yourname@diyland.biz/your_repo1.git
url = https://github.com/yourname/your_repo2.git

然後git push remote origin 它就自動幫你push兩次了。

留言

熱門文章