mirror of
				https://git.proxmox.com/git/libgit2
				synced 2025-10-31 19:49:16 +00:00 
			
		
		
		
	 b0b527e0ad
			
		
	
	
		b0b527e0ad
		
	
	
	
	
		
			
			"git_config_backend" have been renamed to "git_config_file", which implements a generic interface to access a configuration file -- be it either on disk, from a DB or whatever mumbojumbo. I think this makes more sense.
		
			
				
	
	
		
			15 lines
		
	
	
		
			211 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			211 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef INCLUDE_config_h__
 | |
| #define INCLUDE_config_h__
 | |
| 
 | |
| #include "git2.h"
 | |
| #include "git2/config.h"
 | |
| #include "vector.h"
 | |
| 
 | |
| #define GIT_CONFIG_FILENAME ".gitconfig"
 | |
| 
 | |
| struct git_config {
 | |
| 	git_vector files;
 | |
| };
 | |
| 
 | |
| #endif
 |