三、git、ssh相关

如何使用Homebrew在Mac上安装Git

  • https://www.jianshu.com/p/ba401eb527a5

Mac下ssh key配置

  • https://www.jianshu.com/p/a422eb2bb8e2
  • https://www.cnblogs.com/coolcold/p/12583815.html

在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

你可能感兴趣的:(三、git、ssh相关)