mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-07 09:13:06 +00:00
config: Make git_config_file__ondisk() internal
This commit is contained in:
parent
6091457e76
commit
d36451c9d4
@ -134,19 +134,6 @@ GIT_EXTERN(int) git_config_find_system(char *system_config_path, size_t length);
|
||||
*/
|
||||
GIT_EXTERN(int) git_config_open_default(git_config **out);
|
||||
|
||||
/**
|
||||
* Create a configuration file backend for ondisk files
|
||||
*
|
||||
* These are the normal `.gitconfig` files that Core Git
|
||||
* processes. Note that you first have to add this file to a
|
||||
* configuration object before you can query it for configuration
|
||||
* variables.
|
||||
*
|
||||
* @param out the new backend
|
||||
* @param path where the config file is located
|
||||
*/
|
||||
GIT_EXTERN(int) git_config_file__ondisk(struct git_config_file **out, const char *path);
|
||||
|
||||
/**
|
||||
* Allocate a new configuration object
|
||||
*
|
||||
|
||||
13
src/config.h
13
src/config.h
@ -32,4 +32,17 @@ extern int git_config_rename_section(
|
||||
const char *old_section_name, /* eg "branch.dummy" */
|
||||
const char *new_section_name); /* NULL to drop the old section */
|
||||
|
||||
/**
|
||||
* Create a configuration file backend for ondisk files
|
||||
*
|
||||
* These are the normal `.gitconfig` files that Core Git
|
||||
* processes. Note that you first have to add this file to a
|
||||
* configuration object before you can query it for configuration
|
||||
* variables.
|
||||
*
|
||||
* @param out the new backend
|
||||
* @param path where the config file is located
|
||||
*/
|
||||
extern int git_config_file__ondisk(struct git_config_file **out, const char *path);
|
||||
|
||||
#endif
|
||||
|
||||
Loading…
Reference in New Issue
Block a user