summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_git2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 02f6dd3e0..d048cb5c5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-05-14 Oliver Kiddle <opk@zsh.org>
+
+ * Daniel Hahler: 35016: Completion/Unix/Command/_git:
+ introduce new pretty formats %g[sdD] for reflog information
+
2015-05-14 Peter Stephenson <p.stephenson@samsung.com>
* 35110: Src/builtin.c, Doc/Zsh/params.yo: don't
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index c01333ba4..5df01f706 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -5532,7 +5532,7 @@ __git_stashes () {
local expl
declare -a stashes
- stashes=(${${(f)"$(_call_program stashes git stash list 2>/dev/null)"}/: */})
+ stashes=(${(f)"$(_call_program stashes git stash list --pretty=format:%gd 2>/dev/null)"})
__git_command_successful $pipestatus || return 1
_wanted stashes expl stash compadd "$@" -a - stashes