diff options
author | dakkar <dakkar@thenautilus.net> | 2016-04-27 14:31:43 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2016-04-27 14:31:43 +0100 |
commit | 92b533ae904693ef5f2cfcd1069a6e6a184e8d76 (patch) | |
tree | 9e2a3a7f655eaecd195849f4c2cd933ca5ec8607 /git-prompt.sh | |
parent | Remove back references in freshness detection code (diff) | |
parent | Merge branch 'master' of github.com:lvv/git-prompt (diff) | |
download | git-prompt-92b533ae904693ef5f2cfcd1069a6e6a184e8d76.tar.gz git-prompt-92b533ae904693ef5f2cfcd1069a6e6a184e8d76.tar.bz2 git-prompt-92b533ae904693ef5f2cfcd1069a6e6a184e8d76.zip |
Merge remote-tracking branch 'origin/master' into dakkar
Diffstat (limited to 'git-prompt.sh')
-rwxr-xr-x | git-prompt.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-prompt.sh b/git-prompt.sh index 89996d8..66abb07 100755 --- a/git-prompt.sh +++ b/git-prompt.sh @@ -182,7 +182,7 @@ cwd_truncate() { # arg1: max path lenght # returns abbrivated $PWD in public "cwd" var - cwd="${PWD/$HOME/~}" # substitute "~" + cwd="${PWD/$HOME/\~}" # substitute "~" case $1 in full) @@ -431,6 +431,7 @@ parse_git_status() { #git_dir="$( git rev-parse --git-dir 2> /dev/null)" [[ -n ${git_dir/./} ]] || return 1 + [[ -f ${git_dir}/git-prompt-ignored ]] && return 1 vcs=git |