গিটের জন্য আউটপুট রঙ করার কোনও উপায় আছে (বা কোনও আদেশ)?
বিবেচনা:
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
।
যাইহোক, কমান্ড আউটপুটটিতে রঙ যুক্ত করার জন্য কি আরও সাধারণ সমাধান আছে?