Mac系統的終端顯示git當前分支
阿新 • • 發佈:2018-12-29
在這篇文章中:
當我第一次在mac系統下使用git的時候,發現一個問題,git預設是不顯示當前所在的分支名稱,然後網上查詢資料,找到了解決辦法,終於可以顯示本地當前分支,現在分享如下。
1 進入你的home目錄
cd ~
2 編輯.bashrc檔案
vi .bashrc
3 將下面的程式碼加入到檔案的最後處
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='\ [email protected]\h \[\033[01;36m\]\W\[\033[01;32m\]$(git_branch)\[\033[00m\] \$ '
4 儲存退出
5 執行載入命令
source ./.bashrc
6 完成
Mac 下面啟動的 shell 是 login shell,所以載入的配置檔案是.bash_profile,不會載入.bashrc。如果你是 Mac 使用者的話,需要再執行下面的命令,這樣每次開機後才會自動生效:
echo "[ -r ~/.bashrc ] && source ~/.bashrc" >> .bash_profile