close

 

 

GitHub 伺服器

先在Github上建立一個知識庫(Repository) [First-Code-Git]

 

Linux Server

建立要做Github連接的專案目錄

mkdir gitdir 
cd gitdir 
git init #初始化這個資料夾 (建立隱藏目錄 .git)


git add index.html                 #將檔案加入清單
git commit index.html -m '加入索引' #將檔案送進Repos中 -m : 此次更新的註解 #加一個遠端的Repos ([Repository].git )
git remote add gitdir              #https://github.com/[username]/[Repository].git
git push gitdir master             #將本地檔案推到遠端目錄 的 master分枝
git pull gitdir master             #若遠端與本地檔案不相符,先將遠端檔案拉回同步
git push gitdir master             #在Push一次即可完成。

 

回復被刪除的檔案
git checkout . # [.] 代表的是回復所有檔案

查看遠端的 git 資源
git remote -v

建立分枝 branch
git branch 2nd #建立分枝 branch

git checkout 2nd #切換到 "2nd" 這個分枝

touch 2ndtest.html #建立一個要加入2nd的檔案

git add 2ndtest.html #將檔案加入清單

git commit 2ndtest.html -m '2nd加入檔" #送進 repos. 中

git push myTT 2nd #推送檔案

 

在本地複製自己的repos.

git clone /home/XXXXXXX #指定目的地位址

arrow
arrow
    文章標籤
    javacript
    全站熱搜
    創作者介紹
    創作者 CccKaAsS 的頭像
    CccKaAsS

    ccckaass的部落格

    CccKaAsS 發表在 痞客邦 留言(0) 人氣()