Linux的一些系统配置

  1. 命令行显示当前目录,并显示git分支
    在/etc/bashrc中增加,并source
function git-branch-name {
git symbolic-ref HEAD 2>/dev/null | cut -d"/" -f 3
}

function git-branch-prompt {
  local branch=`git-branch-name`
  if [ $branch ]; then printf " [%s]" $branch; fi
}
PS1="\u@\h:\w \[\033[0;36m\]\W\[\033[0m\]\[\033[0;32m\]\$(git-branch-prompt)\[\033[0m\] \$ "

你可能感兴趣的:(Linux配置)