Shows the version of libgit2 and which features have been enabled.

libgit2_config()

git_config(repo = ".")

git_config_global()

git_config_set(name, value, repo = ".")

git_config_global_set(name, value)

Arguments

repo

a path to an existing repository, or a git_repository object as returned by git_open, git_init or git_clone.

name

setting name

value

setting value, must be string, bool, number or NULL

See also