aboutsummaryrefslogtreecommitdiff
path: root/contrib/completion/git-prompt.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-12-12 11:08:13 -0800
committerJunio C Hamano <gitster@pobox.com>2012-12-12 11:08:13 -0800
commit4881616c1a4fa7b19ca2c722ef0b3d48316ac8ef (patch)
tree95df4e05cfe3a3ddbb3fa818a642d177b40aad73 /contrib/completion/git-prompt.sh
parent75ed918bda00a0786bab7de3d220765226fe3f1e (diff)
parentde29a7ac0ec31d8f5fa91b7d2f0294165787d558 (diff)
downloadgit-4881616c1a4fa7b19ca2c722ef0b3d48316ac8ef.tar.gz
git-4881616c1a4fa7b19ca2c722ef0b3d48316ac8ef.tar.xz
Merge branch 'so/prompt-command'
* so/prompt-command: git-prompt.sh: update PROMPT_COMMAND documentation
Diffstat (limited to 'contrib/completion/git-prompt.sh')
-rw-r--r--contrib/completion/git-prompt.sh16
1 files changed, 11 insertions, 5 deletions
diff --git a/contrib/completion/git-prompt.sh b/contrib/completion/git-prompt.sh
index a8b53ba5f..9b074e148 100644
--- a/contrib/completion/git-prompt.sh
+++ b/contrib/completion/git-prompt.sh
@@ -10,14 +10,20 @@
# 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh).
# 2) Add the following line to your .bashrc/.zshrc:
# source ~/.git-prompt.sh
-# 3a) In ~/.bashrc set PROMPT_COMMAND=__git_ps1
-# To customize the prompt, provide start/end arguments
-# PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "'
-# 3b) Alternatively change your PS1 to call __git_ps1 as
+# 3a) Change your PS1 to call __git_ps1 as
# command-substitution:
# Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
# ZSH: PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ '
-# the optional argument will be used as format string
+# the optional argument will be used as format string.
+# 3b) Alternatively, if you are using bash, __git_ps1 can be
+# used for PROMPT_COMMAND with two parameters, <pre> and
+# <post>, which are strings you would put in $PS1 before
+# and after the status string generated by the git-prompt
+# machinery. e.g.
+# PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "'
+# will show username, at-sign, host, colon, cwd, then
+# various status string, followed by dollar and SP, as
+# your prompt.
#
# The argument to __git_ps1 will be displayed only if you are currently
# in a git repository. The %s token will be the name of the current