From 599297fdc3eb003a40ee78489af28d968f76a835 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Mon, 3 Oct 2011 23:12:43 +0200 Subject: [PATCH] ignore missing pack file as git does See http://code.google.com/p/tortoisegit/issues/detail?id=862 Signed-off-by: Sven Strickroth --- src/odb_pack.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/odb_pack.c b/src/odb_pack.c index 4607fb74a..a8f854236 100644 --- a/src/odb_pack.c +++ b/src/odb_pack.c @@ -224,7 +224,10 @@ static int packfile_load__cb(void *_data, char *path) } error = git_packfile_check(&pack, path); - if (error < GIT_SUCCESS) + if (error == GIT_ENOTFOUND) { + /* ignore missing .pack file as git does */ + return GIT_SUCCESS; + } else if (error < GIT_SUCCESS) return git__rethrow(error, "Failed to load packfile"); if (git_vector_insert(&backend->packs, pack) < GIT_SUCCESS) {