git status
とすると、configureで生成したファイルがワッサーーーと並ぶので、一番肝心の修正したファイルリストが隠れてしまう
そこで
git status | more
としていたが、
今度はcolorでなくなってしまう
ググったら解決方法が書いてあった
git config --global color.branch always git config --global color.diff always git config --global color.interactive always git config --global color.status always
でOK
このコマンドをどこでもいいので走らせると、~/gitconfigが書き換えられる
これらの設定が何かとコンフリクトして悪影響が出る場合は、以下のコマンドで元の設定に戻せる
git config --global color.branch auto git config --global color.diff auto git config --global color.interactive auto git config --global color.status auto
ランキング参加中です
↓クリックしていただけると嬉しいです〜