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分支的主要内容,如果未能解决你的问题,请参考以下文章