在mac终端显示git分支

在mac终端显示git分支

效果图(绿色的为分支):

具体操作:

如果不存在~/.bash_profile则创建

touch ~/.bash_profile

 然后修改~/.bash_profile,在文件最后添加

# Git branch in prompt. parse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' } export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "

猜你喜欢

转载自blog.csdn.net/weixin_36995644/article/details/82018039