From 70d5e2d77b4c2afdb442b37924bc252793e106d9 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Fri, 15 Jul 2016 06:32:28 -0400 Subject: check_connected: add progress flag Connectivity checks have to traverse the entire object graph in the worst case (e.g., a full clone or a full push). For large repositories like linux.git, this can take 30-60 seconds, during which time git may produce little or no output. Let's add the option of showing progress, which is taken care of by rev-list. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- connected.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'connected.h') diff --git a/connected.h b/connected.h index 5d88e26c7..afa48cc05 100644 --- a/connected.h +++ b/connected.h @@ -30,6 +30,9 @@ struct check_connected_options { * returns. */ int err_fd; + + /* If non-zero, show progress as we traverse the objects. */ + int progress; }; #define CHECK_CONNECTED_INIT { 0 } -- cgit v1.2.1