git-clean: use a git-add-interactive compatible UI
commit9f93e4611f72577306e369a64d0a4da847be9751
authorJiang Xin <worldhello.net@gmail.com>
Tue, 25 Jun 2013 15:53:51 +0000 (25 23:53 +0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 26 Jun 2013 18:25:11 +0000 (26 11:25 -0700)
tree5dbac477ecd3a4c47406c769521fe9d78db01f9f
parent7a9b0b802ecf5a09502b46de27c07ff05f55b247
git-clean: use a git-add-interactive compatible UI

Rewrite menu using a new method `list_and_choose`, which is borrowed
from `git-add--interactive.perl`. We will use this framework to add
new actions for interactive git-clean later.

Please NOTE:

 * Method `list_and_choose` return an array of integers, and
 * it is up to you to free the allocated memory of the array.
 * The array ends with EOF.
 * If user pressed CTRL-D (i.e. EOF), no selection returned.

Signed-off-by: Jiang Xin <worldhello.net@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/clean.c