Ответ 1
Это не проблема git, а больше оболочки, которую вы используете. В MINGW32 с использованием git 2.9 +:
- C:\Program Files\ Git\etc\ bash.bashrc
# Uncomment to use the terminal colours set in DIR_COLORS eval "$(dircolors -b /etc/DIR_COLORS)"
- C:\Program Files\Git\etc\ DIR_COLORS
DIR 01;37 # Attribute=bold; Text color=white
Файл DIR_COLORS:
# Below are the color init strings for the basic file types. A color init # string consists of one or more of the following numeric codes: # Attribute codes: # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed # Text color codes: # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white # Background color codes: # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white #NORMAL 00 # no color code at all #FILE 00 # regular file: use no color at all RESET 0 # reset to "normal" color DIR 01;37 # directory LINK 01;36 # symbolic link. (If you set this to 'target' instead of a # numerical value, the color is as for the file pointed to.)
Также см. следующие сообщения:
- http://linux-sxs.org/housekeeping/lscolors.html
- http://www.kernel.org/doc/man-pages/online/pages/man5/dir_colors.5.html
- http://linux.about.com/library/cmd/blcmdl1_dircolors.htm
Для более старой версии Git папка bash_profile
in Git_Installation\etc
изменила цвета:
LS_COLORS='di=1:fi=0:ln=31:pi=5:so=5:bd=5:cd=5:or=31:mi=0:ex=35:*.rpm=90'
export LS_COLORS
alias ls='ls -F --color --show-control-chars'