Git (veya herhangi bir komut) için çıktıyı renklendirmenin bir yolu var mı?
Düşünmek:
baller@Laptop:~/rails/spunky-monkey$ git status
# On branch new-message-types
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: app/models/message_type.rb
#
no changes added to commit (use "git add" and/or "git commit -a")
baller@Laptop:~/rails/spunky-monkey$ git add app/models
Ve
baller@Laptop:~/rails/spunky-monkey$ git status
# On branch new-message-types
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: app/models/message_type.rb
#
Çıktı aynı görünüyor, ancak bilgi tamamen farklı: dosya dengesizden sahneleme aşamasına geçti.
Çıktıyı renklendirmenin bir yolu var mı? Örneğin, etiketlenmemiş dosyalar kırmızı, aşamalı yeşiller?
Hatta Changes not staged for commit:
kırmızıya ve # Changes to be committed:
yeşile bile ?
Ubuntu’da çalışmak.
DÜZENLEME: inşaat büyük bu cevap buldu Googling: git config --global --add color.ui true
.
Bununla birlikte, bir komut çıkışına renk eklemek için daha genel bir çözüm var mı?