Mac 终端显示git分支

Posted ryanzheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac 终端显示git分支相关的知识,希望对你有一定的参考价值。

1 进入你的home目录

cd ~

 

2 编辑.bashrc文件

vi .bashrc

 

3 将下面的代码加入到文件的最后处

function git_branch  
  branch="`git branch 2>/dev/null | grep "^\\*" | sed -e "s/^\\*\\ //"`" 
  if [ "$branch" != "" ];then 
    if [ "$branch" = "(no branch)" ];then 
      branch="(`git rev-parse --short HEAD`...)" 
    fi 
    echo " ($branch)"
  fi

export PS1=\\[email protected]\\h \\[\\033[01;36m\\]\\W\\[\\033[01;32m\\]$(git_branch)\\[\\033[00m\\] \\$ 

 

4 保存退出

5 执行加载命令

source ./.bashrc

 

6 完成
Mac 下面启动的 shell 是 login shell,所以加载的配置文件是.bash_profile,不会加载.bashrc。如果你是 Mac 用户的话,需要再执行下面的命令,这样每次开机后才会自动生效:

echo "[ -r ~/.bashrc ] && source ~/.bashrc" >> .bash_profile

 

7. 配置后效果如下:

技术图片

 

以上是关于Mac 终端显示git分支的主要内容,如果未能解决你的问题,请参考以下文章

在Mac终端显示 Git 当前所在分支

mac bash上显示git分支与状态

MacLinux系统的终端显示git当前分支

git命令日常操作

Shell颜色及显示git分支配置

Ubuntu16.04显示git分支状态