Git 設定

安裝

Git

環境設定

設定

所有設定會記錄在 home 目錄下的 .gitconfig

如果 project 需要自訂的話,請在該目錄下新增 .gitconfig

設定方式 - 透過指令

# 查看設定
git config --list

# username & email
git config --global user.name "username"
git config --global user.email "username@example.com.tw"

# console 上顏色
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
git config --global color.log auto

設定方式 - 編輯檔案

用你習慣用編輯器來開啟 home 目錄下的 .gitconfig 編輯吧

[user]
        name = username
        email = username@example.com.tw
[core]
        editor = vim
        ignorecase = false
[push]
        default = simple
[color]
        diff = auto
        status = auto
        branch = auto
        log = auto
[alias]
        lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cblueby %an %Cgreen(%cr)%Creset'

別名設定(alias)

git 指令打久了,每次都要打很多字覺得很煩時可以設定別名喔

git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.aa add --all
git config --global alias.ci commit
git config --global alias.st status