Bash 命令行顯示 Git 分支名稱

只需在 ~/.bashrc 最後追加以下內容:git 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
相關文章
相關標籤/搜索