git config --global user.name "tawan158"
git config --global user.email "tawan158@ugm.com.tw"
```
git config --global user.name "tawan158"
git config --global user.email "tawan158@ugm.com.tw"
請輸入自己申請的Github帳號與email
在每一次的 Git commit (提交,我們稍後會提到) 都會記錄作者的訊息像是 name 及 email ,
\--global 代表全域設定,所有的數據庫
由於電腦教室會還原,因此每次到教室安裝「git」後,記得都要設定
2. 查看訊息 ```
git config --list
```
3. 輸出時加上顏色 ```
git config --global color.ui true
```
三、Windows 提示字元操作
1. cd:改變目錄
2. mkdir:建立一個目錄
3. ls:顯示目錄下的檔案
4. touch:建立新檔案
5. 「.」 :代表本層
6. 「..」 :代表上層
7. 目錄 「/」
8. 如果不想記太多指令,那麼請記一個「cd」就可以了
四、Git操作(這裡僅介紹與上傳有關的指令)
1. git init :建立本地端數據庫
2. git clone xxx:複製遠端數據庫
3. git add .:將所有異動的檔案設成 **stage 狀態**
4. git commit -m "commit訊息" :由於我主要是想更新網站資料,所以commit訊息,可以輸入"1"即可,-m是快速提交
5. git push origin master:將 Commit 送出去
6. 修改檔案 => 加入 stage (git add .) => 提交( git commit -m '1' )=> 上傳(git push origin master)