Git at terminal表现得很奇怪。
以下是我有git命令时终端响应的方式
git log
不确定如何修复它。
这就是.bash_profile喜欢
的方式"$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function
if [ -f /usr/local/etc/bash_completion.d/git-completion.bash ]; then
. /usr/local/etc/bash_completion.d/git-completion.bash
fi
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w\[\033[00m\]$(git branch &>/dev/null; if [ $? -eq 0 ]; then echo "\[\033[01;33m\]($(git branch | grep ^*|sed s/\*\ //))\[\033[00m\]"; fi)$ '
答案 0 :(得分:1)
使用以下命令更改git颜色配置:
git config --global color.ui [always|auto|never]