Sean <seanlkml@xxxxxxxxxxxx> wrote: > On Sun, 26 Nov 2006 15:27:07 +0100 (CET) > Johannes Schindelin <Johannes.Schindelin@xxxxxx> wrote: > > > But there really is no good place to put it: most commands need a git > > repository, and those which do not, are inappropriate to put an option > > "--show-ps1" into. Except maybe repo-config. Thoughts? > > What about just making it an option to the git wrapper? I'm using something like this, and will be adding it to git-completion.bash tonight: __git_ps1 () { local b="$(git symbolic-ref HEAD 2>/dev/null)" if [ -n "$b" ]; then echo "(${b##refs/heads/})"; fi } PS1='[\u@\h \W$(__git_ps1)]\$ ' it works very well... -- Shawn. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html