git_branch_name_is_valid

Determine whether a branch name is valid, meaning that (when prefixed with refs/heads/) that it is a valid reference name, and that any additional branch name restrictions are imposed (eg, it cannot start with a -).

extern (C) nothrow @nogc public
int
git_branch_name_is_valid
(
int* valid
,
const(char)* name
)

Parameters

valid int*

output pointer to set with validity of given branch name

name const(char)*

a branch name to test

Return Value

Type: int

0 on success or an error code

Meta