deimos.git2.config

Undocumented in source.

Members

Aliases

git_config_foreach_cb
alias git_config_foreach_cb = int function(const(git_config_entry)*, void*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

git_config_level_t
enum git_config_level_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_cvar_t
enum git_cvar_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

git_config_add_file_ondisk
int git_config_add_file_ondisk(git_config* cfg, const(char)* path, git_config_level_t level, int force)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_backend_foreach_match
int git_config_backend_foreach_match(git_config_backend* backend, const(char)* regexp, int function(const(git_config_entry)*, void*) fn, void* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_delete_entry
int git_config_delete_entry(git_config* cfg, const(char)* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_delete_multivar
int git_config_delete_multivar(git_config* cfg, const(char)* name, const(char)* regexp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_find_global
int git_config_find_global(char* out_, size_t length)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_find_system
int git_config_find_system(char* out_, size_t length)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_find_xdg
int git_config_find_xdg(char* out_, size_t length)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_foreach
int git_config_foreach(const(git_config)* cfg, git_config_foreach_cb callback, void* payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_foreach_match
int git_config_foreach_match(const(git_config)* cfg, const(char)* regexp, git_config_foreach_cb callback, void* payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_free
void git_config_free(git_config* cfg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_get_bool
int git_config_get_bool(int* out_, const(git_config)* cfg, const(char)* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_get_entry
int git_config_get_entry(const(git_config_entry)** out_, const(git_config)* cfg, const(char)* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_get_int32
int git_config_get_int32(int32_t* out_, const(git_config)* cfg, const(char)* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_get_int64
int git_config_get_int64(int64_t* out_, const(git_config)* cfg, const(char)* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_get_mapped
int git_config_get_mapped(int* out_, const(git_config)* cfg, const(char)* name, const(git_cvar_map)* maps, size_t map_n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_get_multivar_foreach
int git_config_get_multivar_foreach(const(git_config)* cfg, const(char)* name, const(char)* regexp, git_config_foreach_cb callback, void* payload)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_get_string
int git_config_get_string(const(char)** out_, const(git_config)* cfg, const(char)* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_iterator_free
void git_config_iterator_free(git_config_iterator* iter)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_iterator_glob_new
int git_config_iterator_glob_new(git_config_iterator** out_, const(git_config)* cfg, const(char)* regexp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_iterator_new
int git_config_iterator_new(git_config_iterator** out_, const(git_config)* cfg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_lookup_map_value
int git_config_lookup_map_value(int* out_, const(git_cvar_map)* maps, size_t map_n, const(char)* value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_multivar_iterator_new
int git_config_multivar_iterator_new(git_config_iterator** out_, const(git_config)* cfg, const(char)* name, const(char)* regexp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_new
int git_config_new(git_config** out_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_next
int git_config_next(git_config_entry** entry, git_config_iterator* iter)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_open_default
int git_config_open_default(git_config** out_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_open_global
int git_config_open_global(git_config** out_, git_config* config)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_open_level
int git_config_open_level(git_config** out_, const(git_config)* parent, git_config_level_t level)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_open_ondisk
int git_config_open_ondisk(git_config** out_, const(char)* path)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_parse_bool
int git_config_parse_bool(int* out_, const(char)* value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_parse_int32
int git_config_parse_int32(int32_t* out_, const(char)* value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_parse_int64
int git_config_parse_int64(int64_t* out_, const(char)* value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_refresh
int git_config_refresh(git_config* cfg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_set_bool
int git_config_set_bool(git_config* cfg, const(char)* name, int value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_set_int32
int git_config_set_int32(git_config* cfg, const(char)* name, int32_t value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_set_int64
int git_config_set_int64(git_config* cfg, const(char)* name, int64_t value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_set_multivar
int git_config_set_multivar(git_config* cfg, const(char)* name, const(char)* regexp, const(char)* value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_set_string
int git_config_set_string(git_config* cfg, const(char)* name, const(char)* value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Mixins

__anonymous
mixin _ExportEnumMembers!git_config_level_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
__anonymous
mixin _ExportEnumMembers!git_cvar_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

git_config_entry
struct git_config_entry
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_config_iterator
struct git_config_iterator
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
git_cvar_map
struct git_cvar_map
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta