summaryrefslogtreecommitdiff
path: root/tree.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-06-25 11:02:09 -0700
committerJunio C Hamano <gitster@pobox.com>2015-06-25 11:02:10 -0700
commitc53312583b2d25b6ed5f0aa421993795743d1da6 (patch)
tree6c93284d0591ed5b210139fcfff040689f8199fa /tree.h
parentf249409b6be74132e80e6d83f264aaa158563be1 (diff)
parentce4e7b2ac38cfe5e4c165411d2e37b22e445ab88 (diff)
downloadgit-c53312583b2d25b6ed5f0aa421993795743d1da6.tar.gz
Merge branch 'jk/squelch-missing-link-warning-for-unreachable' into maint
Recent "git prune" traverses young unreachable objects to safekeep old objects in the reachability chain from them, which sometimes caused error messages that are unnecessarily alarming. * jk/squelch-missing-link-warning-for-unreachable: suppress errors on missing UNINTERESTING links silence broken link warnings with revs->ignore_missing_links add quieter versions of parse_{tree,commit}
Diffstat (limited to 'tree.h')
-rw-r--r--tree.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/tree.h b/tree.h
index d24125f84f..d24786cba2 100644
--- a/tree.h
+++ b/tree.h
@@ -16,7 +16,11 @@ struct tree *lookup_tree(const unsigned char *sha1);
int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);
-int parse_tree(struct tree *tree);
+int parse_tree_gently(struct tree *tree, int quiet_on_missing);
+static inline int parse_tree(struct tree *tree)
+{
+ return parse_tree_gently(tree, 0);
+}
void free_tree_buffer(struct tree *tree);
/* Parses and returns the tree in the given ent, chasing tags and commits. */