美文网首页
Mac 终端显示git分支名

Mac 终端显示git分支名

作者: katelin | 来源:发表于2019-06-21 11:24 被阅读0次
katelin@katelin ~$ cd ~
katelin@katelin ~$ vi .bash_profile

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

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='\u@\h \[\033[01;36m\]\W\[\033[01;32m\]$(git_branch)\[\033[00m\] \$ '

保存退出

执行加载命令:

katelin@katelin ~$ source ./.bash_profile

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

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

相关文章

网友评论

      本文标题:Mac 终端显示git分支名

      本文链接:https://www.haomeiwen.com/subject/nqfyqctx.html