वहाँ git (या किसी भी कमांड) के लिए रंग उत्पादन का एक तरीका है?
विचार करें:
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
तथा
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
#
आउटपुट समान दिखता है, लेकिन जानकारी पूरी तरह से अलग है: फ़ाइल अनस्ट्रेड से प्रतिबद्ध के लिए मंचित हो गई है।
क्या आउटपुट को रंगीन करने का कोई तरीका है? उदाहरण के लिए, जो फाइलें अस्थिर हैं, वे लाल हैं, मंचित हरी हैं?
या यहां तक Changes not staged for commit:
कि लाल और # Changes to be committed:
हरे रंग के लिए?
उबंटू में काम करना।
संपादित करें: Googling को यह उत्तर मिला जो बहुत अच्छा काम करता है git config --global --add color.ui true
:।
हालाँकि, कमांड आउटपुट में रंग जोड़ने के लिए कोई और सामान्य समाधान है?