進入根目錄
cd ~
複製程式碼
編輯.bashrc
檔案(如沒有此檔案會自動建立)
vim .bashrc
複製程式碼
將下面的程式碼加入到檔案的最後處
function git_branch {
branch="`git branch 2>/dev/null | grep "^\*" | sed -e "s/^\*\ //"`"
if [ "${branch}" != "" ];then
if [ "${branch}" = "(no branch)" ];then
branch="(`git rev-parse --short HEAD`...)"
fi
echo " ($branch)"
fi
}
export PS1='\u@\h \[\033[01;36m\]\W\[\033[01;32m\]$(git_branch)\[\033[00m\] \$ '
複製程式碼
儲存退出
先按
esc
複製程式碼
接著
:wq
複製程式碼
重新載入命令
source ./.bashrc
複製程式碼
Mac 下面啟動的 shell 是 login shell,所以載入的配置檔案是
.bash_profile
,不會載入.bashrc
。如果是 Mac 的話,需要再執行下面的命令,這樣每次開機後才會自動生效:
echo "[ -r ~/.bashrc ] && source ~/.bashrc" >> .bash_profile
複製程式碼