gpt4 book ai didi

mingw32 - 在 Windows 上的 git bash 中设置 ls 的颜色

转载 作者:行者123 更新时间:2023-12-03 02:23:38 25 4
gpt4 key购买 nike

我最近安装了 Windows 版 GitHub,并且正在使用 git bash 提示符 - 现在困扰我的一件事是,当我输入 LS 时,所有目录都以蓝色列出。

如何更改我的 git bash shell,以便当我输入 LS 时,目录以不同的颜色列出为蓝色?

最佳答案

这并不是具体的 git 问题,而是您正在使用的 shell 的问题。在 MINGW32 上使用 Git 2.9+:

  1. 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 # 属性=粗体;文字颜色=白色

    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.)

    另请参阅以下帖子:

    对于旧版本的 Git,Git_Installation\etc 文件夹中的 bash_profile 颜色发生变化:

    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'

    关于mingw32 - 在 Windows 上的 git bash 中设置 ls 的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14049896/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com