vi ~/.bash_profile
加入
export PS1="\u@\h \[\033[32m\]\w\[\033[00m\] $ "
存檔後重新登入或是執行
source ~/.bash_profile
如果要顯示 git branch 名稱,改加入
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
參考: https://coderwall.com/p/fasnya/add-git-branch-name-to-bash-prompt