一、安裝GIT
二、設定GIT
git config --global user.name "UGM" git config --global user.email "tawan158@gmail.com"
--global 代表全域設定
git config --list
git config --global color.ui true
三、Windows 提示字元操作
四、git操作
建立一個新的 Repository
切換到要建立的目錄 底下後輸入
git init
查詢 Git 的狀態
git status
推入當前分支並將遠程設置為上游
git push --set-upstream https://github.com/webugm/az.git master