如何使用Homebrew在Mac上安装Git
Mac下ssh key配置
在Mac终端显示 Git 当前所在分支
- 网上有好些这样文章:https://www.jianshu.com/p/4a36ee5cc158
- 但是配置时候得先了解zsh与bash,查看自己使用的是哪一个shell
- 我电脑用的是zsh,所以度了这个:https://www.icode9.com/content-4-1028020.html
在
1、
cd ~
2、
open .zshrc (如果有)
3、添加如下配置方案代码
function parse_git_branch() {
git branch 2> /dev/null | sed -n -e 's/^\* \(.*\)/[\1]/p'
}
setopt PROMPT_SUBST
export PROMPT='%F{grey}%n%f %F{cyan}%~%f %F{green}$(parse_git_branch)%f %F{normal}$%f '
4、执行 source ~/.zshrc