在我 .bashrc
文件中,我列入了以下内容:
GIT_PS1_SHOWDIRTYSTATE=true
GIT_PS1_SHOWUNTRACKEDFILES=true
GIT_PS1_SHOWUPSTREAM="verbose git"
export PS1=" ][e[${ps_color}m]h:w[e[0m] $(__git_ps1 (%s) )> "
这让我有了这样的感觉:
11:31:12]boxname:~/deploy/config/deploy (master %)>
同时,我从 git status
获得此消息。
# On branch master
# Your branch is ahead of origin/master by 3 commits.
这会让我相信 我的迅速应该是
11:31:12]boxname:~/deploy/config/deploy (master % +3)>
有什么想法,我为什么不能让这个正常运转?