github windows 入門教程

聆聽--風雨發表於2017-03-05

github的大名可謂是人人皆知,不多講了。

1.建立賬戶

https://github.com/

2.建立倉庫

3.下載windows版的github客戶端

https://git-for-windows.github.io/

4.開啟git命令列,輸入一下命令

git config --global user.name "你的使用者名稱"
git config --global user.mail "你的郵箱"
cd 你的資料夾
echo "reade me">>READEME //建立reademe檔案
git init //初始化
git add . 將檔案新增到佇列
git commit -m 'first commit' 快取提交,引號中是對本次提交的描述,不能為空
git remote add origin http://XXX(你的專案地址)
git push origin master 將檔案上傳到github
如果出現fatal: remote origin already exists. 錯誤則
 git remote rm origin

 

 

 

5.版本控制

 

git log
git reset --hard HEAD^//回退到上一個版本 HEAD^^上上一個版本
git reset --hard id//回退到指定版本號

 

 

6.新增新檔案

git add newfile
git commit -m "描述"
git remote add http://position
git push

7.常用命令

git chekout -- File //從服務端更新相應程式碼,比如本地通過作業系統刪除,並沒有通過git命令刪除,此時通過這個命令可以恢復被刪除的檔案
git pull //將伺服器內容更新到本地 如果是多人協作,建議commit之前執行此命令