在Mac終端顯示 Git 當前所在分支

devzhang發表於2019-04-26

進入根目錄

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
複製程式碼

最終完成效果圖

在Mac終端顯示 Git 當前所在分支

相關文章