2016-03-14

調整的 git diff 的 meta color

首先要讓 git diff 有顏色

    git config --global color.ui true

底下的設定可以讓所謂的 meta (程式碼以外的註解) 具有不同顏色

    git config --global color.diff.meta "blue black bold"

以上的 blue, black 兩個位置分別代表字體和背景的顏色
可以填的值有 normal, black, red, green, yellow, blue, magenta, cyan, or white

而最後一個 bold 的位置代表字的 style
可以填的值有 bold, dim, ul (underline), blink, and reverse (swap foreground and background)ㄎ

--
參考資料
https://git-scm.com/book/zh-tw/v2/Customizing-Git-Git-Configuration#Colors-in-Git

沒有留言:

張貼留言

Configuring HAProxy as a proxy for Cargo

Configuring HAProxy as a proxy for Cargo (the Rust package manager) in a corporate network environment involves several steps. Here's a ...