1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-27 16:50:58 +01:00

37149: _git: Complete 'bisect/bad' ref

This commit is contained in:
Daniel Shahaf 2015-11-20 03:39:26 +00:00
parent 4353bec49f
commit d554f31bcb
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2015-11-20 Daniel Shahaf <d.s@daniel.shahaf.name>
* 37149: Completion/Unix/Command/_git: _git: Complete
'bisect/bad' ref
2015-11-19 Peter Stephenson <p.stephenson@samsung.com>
* 37159: NEWS, README: update for next version.

View file

@ -5639,6 +5639,7 @@ __git_heads_local () {
[[ -f $gitdir/$f ]] && heads+=$f
done
[[ -f $gitdir/refs/stash ]] && heads+=stash
[[ -f $gitdir/refs/bisect/bad ]] && heads+=bisect/bad
fi
__git_describe_commit heads heads-local "local head" "$@"