Mac iterm2 配置git显示分支
如下修改Mac的环境变量
- 编辑环境变量配置文件
sudo vi /etc/profile
- 复制以下代码在profile文件中
find_git_branch () {
local dir=. head
until [ "$dir" -ef / ]; do
if [ -f "$dir/.git/HEAD" ]; then
head=$(< "$dir/.git/HEAD")
if [[ $head = ref:\ refs/heads/* ]]; then
git_branch=" → ${head#*/*/}"
elif [[ $head != '' ]]; then
git_branch=" → (detached)"
else
git_branch=" → (unknow)"
fi
return
fi
dir="../$dir"
done
git_branch=''
}
PROMPT_COMMAND="find_git_branch; $PROMPT_COMMAND"
black=$'\[\e[1;30m\]'
red=$'\[\e[1;31m\]'
green=$'\[\e[1;32m\]'
yellow=$'\[\e[1;33m\]'
blue=$'\[\e[1;34m\]'
magenta=$'\[\e[1;35m\]'
cyan=$'\[\e[1;36m\]'
white=$'\[\e[1;37m\]'
normal=$'\[\e[m\]'
PS1="$white[$magenta\u$white@$green\h$white:$cyan\w$yellow\$git_branch$white]\$ $normal"
修改后的profile文件
- wq保存profile文件,并执行source profile命令是刚才修改的配置文件使其生效。
- 退出命令行,再次打开。就可以看到如下效果。
以上是基于bash这种终端的,其实在Mac系统上自带的终端有zsh,可以使用zsh实现git显示分支的效果
- 查看系统安装的所有shell有哪些
cat /etc/shells
系统已经安装的shell
zsh这种shell是非常的强大的,同时其配置也异常的复杂,但是github上一个开源项目 oh-my-zsh 是的zsh的使用变得异常的简单
- 通过wget自动安装oh-my-zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
下载完成后重新启动iTerm即可愉快的使用zsh了,当然习惯使用bash的童鞋不要害怕,zsh是完全兼容bash的。
使用zsh显示git当前分支名称
网友评论