# git 初始化
git init
# 抓遠端儲存庫下來
git clone
#移除 Git
rm -rf .git
# 檢查本地
git status
# 將全部檔案加入追中
git add .
# 將檔案移除追中
git rm --cached
# 查看之前紀錄
git log
# 查詢遠端連結(URL)
git remote -v
# 新增遠端倉庫
git remote add
# 本地推到遠端
git push -u
#移除遠端
git remote remove
# 拉取遠端分支
git pull
# 設定帳號
git config --global user.name "(Name)"
# 設定E-mail
git config --global user.email "(Email)"
# 查看相關設定
git config --list
那麼今天就先到這理吧~
感謝各位觀看
下集預告:Day 13