我已成功在ubuntu终端中配置git-prompt.sh
。
以前它在Android Studio和Android中都运行良好。 ubuntu终端但突然它在Android Studio终端中无法正常工作
我的.bashrc
样本
# Enable tab completion
source /home/rnztx/git/git_wiki/git-completion.bash
# colors!
cyan="\[\033[0;36m\]"
cyanD="\[\033[1;36m\]"
green="\[\033[0;32m\]"
greenD="\[\033[1;32m\]"
redD="\[\033[1;31m\]"
red="\[\033[0;31m\]"
blue="\[\033[0;34m\]"
blueD="\[\033[1;34m\]"
purple="\[\033[0;35m\]"
purpleD="\[\033[1;35m\]"
reset="\[\033[0m\]"
# Change command prompt
source /home/rnztx/git/git_wiki/git-prompt.sh
export GIT_PS1_SHOWDIRTYSTATE=1
# '\u' adds the name of the current user to the prompt
# '\$(__git_ps1)' adds git-related stuff
# '\W' adds the name of the current directory
export PS1="$purple\u@\h:$green\$(__git_ps1)$green\W$ $reset"
答案 0 :(得分:1)
看起来我的/etc/bash.bashrc
搞砸了
所以,现在我已将/etc/bash.bashrc
替换为我的用户.bashrc
文件。
确保备份
/etc/bash.bashrc
个人资料