count-objects: report alternates via verbose mode
commit5fe849d651e259af58f29f9cfb1b1405154ffacc
authorJeff King <peff@peff.net>
Mon, 3 Oct 2016 20:36:18 +0000 (3 16:36 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 10 Oct 2016 20:52:37 +0000 (10 13:52 -0700)
tree2db0fc624b89d513744ffa04c7faa18009dd1d93
parentf7b7774f34b86fed8a2e9554a9fe865c62a0a5eb
count-objects: report alternates via verbose mode

There's no way to get the list of alternates that git
computes internally; our tests only infer it based on which
objects are available. In addition to testing, knowing this
list may be helpful for somebody debugging their alternates
setup.

Let's add it to the "count-objects -v" output. We could give
it a separate flag, but there's not really any need.
"count-objects -v" is already a debugging catch-all for the
object database, its output is easily extensible to new data
items, and printing the alternates is not expensive (we
already had to find them to count the objects).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-count-objects.txt
builtin/count-objects.c
t/t5613-info-alternate.sh