Git版本查詢、更版
確認目前電腦 Git 的版本 git version
更新到最新版 git update-git-for-windows
Git相關指令
1. git config:
$ git config --global user.name "Mars"
$ git config --global user.email "mars@xxx.com"
2. git init
新建一個local repository
3. git add
將files加入git
單一檔案加入索引:
git add <檔案名稱>
所有檔案加入索引:
git add .
4. git commit
git commit -m "<填寫版本資訊>"
5. git status
觀察當前分支相關狀態
6. git log
瀏覽歷史紀錄
7. git giff
顯示工作目錄和索引的差異
8. git show
顯示git修改紀錄
9. git blame
顯示每一行內容的作者、時間…等資訊
10. git remote
如果你要觀察本地數據庫跟遠端數據庫的關聯,就得仰賴 git remote 系列指令:
加入遠端數據庫:
git remote add <遠端數據庫簡稱> "url"
觀看遠端數據庫列表:git remote 觀看遠端數據庫列表(包含 url):git remote -v 下載遠端數據庫:git clone “url”
11. git push
推至remote
實際應用
當瞭解基本用法之後我們可以透過Git Flow來了解要如何應用及搭配。