Date: Jan. 22th, 2020
Lecturer: Chia
Git 是一種版本控制系統,
也是目前業界最流行的版本控制系統。
Working Directory
(工作資料夾)
Staging Area (暫存區)
Repositories (儲存庫)
安裝 Git 到你的電腦上
$ git --version
設定 Git 的使用者名稱和電子信箱
$ git config --global user.name "<Your Name>"
$ git config --global user.email "<your@gmail.com>"
$ mkdir test-2020
$ cd test-2020
$ git init
$ git status
試試看:新增檔案前/後 git status 的差異
$ git add abc.txt
$ git status
$ git commit -m "add abc.txt"
Hint:
當自己開發時會在工作資料夾工作,先將檔案加入暫存區,確認沒問題則 commit 到儲存庫中。
$ cd test-2020
<< 編輯檔案 >>
$ git status
$ git add --all
$ git status
$ git commit -m "modify: def"
將 repository 做本機和遠端的連結
將本機端程式 push 到遠端儲存庫
$ git remote add origin https://github.com/bessyhuang/test-2020.git
$ git push -u origin master
Note: Git入門 - By Chia