Revision d899cf559b6a93006993752e7a89d13606380227 authored by Junio C Hamano on 18 January 2012, 23:48:46 UTC, committed by Junio C Hamano on 18 January 2012, 23:48:46 UTC
* maint-1.7.7:
  Git 1.7.7.6
  diff-index: enable recursive pathspec matching in unpack_trees

Conflicts:
	GIT-VERSION-GEN
2 parent s ab8a780 + 0065343
Raw File
pack-revindex.h
#ifndef PACK_REVINDEX_H
#define PACK_REVINDEX_H

struct revindex_entry {
	off_t offset;
	unsigned int nr;
};

struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
void discard_revindex(void);

#endif
back to top