Re: [PATCH 23/38] refs: make peel_ref() virtual

2016-06-09 Thread Michael Haggerty
On 06/07/2016 07:36 PM, Junio C Hamano wrote: > Michael Haggerty writes: > >> For now it only supports the main reference store. > > Isn't this comment applicable to a handful of recent changes that > made other things virtual, too? Just wondering if I am missing > something very special with t

Re: [PATCH 23/38] refs: make peel_ref() virtual

2016-06-07 Thread Junio C Hamano
Michael Haggerty writes: > For now it only supports the main reference store. Isn't this comment applicable to a handful of recent changes that made other things virtual, too? Just wondering if I am missing something very special with the peel_ref() thing to single it out. > > Signed-off-by: Mi

[PATCH 23/38] refs: make peel_ref() virtual

2016-06-03 Thread Michael Haggerty
For now it only supports the main reference store. Signed-off-by: Michael Haggerty --- refs.c | 7 +++ refs/files-backend.c | 6 -- refs/refs-internal.h | 3 +++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/refs.c b/refs.c index 22837f4..2d84c5c 100644 --