Skip to content

Latest commit

 

History

History
78 lines (62 loc) · 1.58 KB

6.Git.md

File metadata and controls

78 lines (62 loc) · 1.58 KB
marp theme _class paginate backgroundColor backgroundImage
true
gaia
lead
true
url("img/hero-background.svg")
<style> marp-pre{ border-radius: 13px; } code{ border-radius: 7px; } </style>

Git/Github

講師:陳邱嵩


bg h:107 w:256 right bg h:255 w:256 right

Git

  • 版本控制系統
  • 為了處理修改檔案時的問題
  • 每次上傳、下載時會比較差異,只傳送有變動的檔案
    • 節省時間

Github

  • 檔案儲存處
  • 程式的雲端硬碟、IG
  • 工程師必備神器!!!

bg 70%


安裝流程


bg 80%


bg 80%


bg 80%


bg 60%


  1. 按下鍵盤上Windows
  2. 打出cmd,並按Enter
  3. 逐行貼上以下指令
git config --global user.name "<使用者名字>"
git config --global user.email "<電子信箱>"

舉例:

git config --global user.name "abcd"
git config --global user.email "[email protected]"