summary refs log tree commit diff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2015-10-25 18:35:50 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2015-10-25 18:52:29 +0000
commit8b5158424637834f242bb1e2114dee4ac7cca328 (patch)
tree98898dc4a46fc8ab9fc58f4a903124d6011e81cc /ChangeLog
parentcc19bb96b91904cc650512297df63b834aa42d28 (diff)
downloadzsh-8b5158424637834f242bb1e2114dee4ac7cca328.tar.gz
zsh-8b5158424637834f242bb1e2114dee4ac7cca328.tar.xz
zsh-8b5158424637834f242bb1e2114dee4ac7cca328.zip
36962: _git: Fix completion of RHS of refspecs.
Before this patch, 'git push $remote :<TAB>' completed branch names (as though
by `git branch -a`), instead of completing remote branch names sans the
${remote}/ prefix.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2e5b99cd3..e26e62e5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2015-10-25  Daniel Shahaf  <d.s@daniel.shahaf.name>
 
+	* 36962: Completion/Unix/Command/_git: _git: Fix completion of
+	RHS of refspecs.
+
 	* 36964: Completion/Unix/Command/_git: _git: Complete remotes
 	branch names with slashes correctly.