1. 程式人生 > >Git 常用命令 和 安裝

Git 常用命令 和 安裝

  這年頭不會點git還真不能與別人進行程式碼交流

 

 

 ps: 如上圖就是git的工作流程圖

  

  git add file   # 將file加入暫存區
  git commit -m '建立hello.txt'   # 提交到倉庫 後面是說明
 
  git log     # 檢視歷史記錄
  git status    # 檢視暫存區資訊

  git reset HEAD^^^   # 將倉庫回到快取中 ^是要恢復的版本 最近HEAD
  git checkout hello.txt 

 # 將快取中把hello.txt的資料恢復回來

  git pull      # 從GitHub下拉到本地
  git push origin master    # 從倉庫上傳到GitHub