Staging
v0.5.1
https://github.com/git/git
Revision 582c7393a47894ea299a82c2ae91fec3101e7559 authored by Sven Verdoolaege on 26 June 2007, 21:19:41 UTC, committed by Junio C Hamano on 27 June 2007, 01:02:13 UTC
Without this patch, the code would look for the submodule
commits in the superproject and (needlessly) fail when it
couldn't find them.

Signed-off-by: Sven Verdoolaege <skimo@liacs.nl>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c7c8485
Raw File
Tip revision: 582c7393a47894ea299a82c2ae91fec3101e7559 authored by Sven Verdoolaege on 26 June 2007, 21:19:41 UTC
Ignore submodule commits when fetching over dumb protocols
Tip revision: 582c739
list-objects.h
#ifndef LIST_OBJECTS_H
#define LIST_OBJECTS_H

typedef void (*show_commit_fn)(struct commit *);
typedef void (*show_object_fn)(struct object_array_entry *);
typedef void (*show_edge_fn)(struct commit *);

void traverse_commit_list(struct rev_info *revs, show_commit_fn, show_object_fn);

void mark_edges_uninteresting(struct commit_list *, struct rev_info *, show_edge_fn);

#endif
back to top