libgit2

git_remote_create_init_options

Version:

Initialize git_remote_create_options structure

Initializes a git_remote_create_options with default values. Equivalent to creating an instance with GIT_REMOTE_CREATE_OPTIONS_INIT.

Signature

int git_remote_create_init_options(git_remote_create_options *opts, unsigned int version);

Parameters

In
opts

The git_remote_create_options struct to initialize.

unsigned int
In
version

The struct version; pass GIT_REMOTE_CREATE_OPTIONS_VERSION.

Returns

int

Zero on success; -1 on failure.

Versions