mirror of
				https://git.proxmox.com/git/libgit2
				synced 2025-11-04 13:55:27 +00:00 
			
		
		
		
	The `git_repository_index` call now returns a brand new index that must be manually free'd.
		
			
				
	
	
		
			49 lines
		
	
	
		
			986 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			986 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef INCLUDE_repository_h__
 | 
						|
#define INCLUDE_repository_h__
 | 
						|
 | 
						|
#include "git2/common.h"
 | 
						|
#include "git2/oid.h"
 | 
						|
#include "git2/odb.h"
 | 
						|
#include "git2/repository.h"
 | 
						|
#include "git2/object.h"
 | 
						|
 | 
						|
#include "hashtable.h"
 | 
						|
#include "index.h"
 | 
						|
#include "cache.h"
 | 
						|
#include "refs.h"
 | 
						|
 | 
						|
#define DOT_GIT ".git"
 | 
						|
#define GIT_DIR DOT_GIT "/"
 | 
						|
#define GIT_OBJECTS_DIR "objects/"
 | 
						|
#define GIT_INDEX_FILE "index"
 | 
						|
 | 
						|
struct git_object {
 | 
						|
	git_cached_obj cached;
 | 
						|
	git_repository *repo;
 | 
						|
	git_otype type;
 | 
						|
};
 | 
						|
 | 
						|
struct git_repository {
 | 
						|
	git_odb *db;
 | 
						|
 | 
						|
	git_cache objects;
 | 
						|
	git_refcache references;
 | 
						|
 | 
						|
	char *path_repository;
 | 
						|
	char *path_index;
 | 
						|
	char *path_odb;
 | 
						|
	char *path_workdir;
 | 
						|
 | 
						|
	unsigned is_bare:1;
 | 
						|
	unsigned int lru_counter;
 | 
						|
};
 | 
						|
 | 
						|
/* fully free the object; internal method, do not
 | 
						|
 * export */
 | 
						|
void git_object__free(void *object);
 | 
						|
 | 
						|
int git__parse_oid(git_oid *oid, const char **buffer_out, const char *buffer_end, const char *header);
 | 
						|
int git__write_oid(git_odb_stream *src, const char *header, const git_oid *oid);
 | 
						|
 | 
						|
#endif
 |