From 8dc73a799534ba871fa706db0b54a2c2a01d146d Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Sat, 14 Dec 2013 15:46:43 +0100 Subject: [PATCH] =?UTF-8?q?superfluous=20'=E2=80=A6'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shell/git_prompt_info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/git_prompt_info b/shell/git_prompt_info index d871d80..9187c1c 100644 --- a/shell/git_prompt_info +++ b/shell/git_prompt_info @@ -44,7 +44,7 @@ __git_ps1_branch() { local branch branch="$(git symbolic-ref HEAD 2>/dev/null)" || \ branch="$(__git_ps1_describe)" || \ - branch="$(git rev-parse --short HEAD)…" || \ + branch="$(git rev-parse --short HEAD)" || \ branch="unknown" echo ${branch##refs/heads/}