git_filter_unregister

Remove the filter with the given name

Attempting to remove the builtin libgit2 filters is not permitted and will return an error.

Currently the filter registry is not thread safe, so any registering or deregistering of filters must be done outside of any possible usage of the filters (i.e. during application setup or shutdown).

@param name The name under which the filter was registered @return 0 on success, error code <0 on failure

package extern (C) nothrow @nogc
int
git_filter_unregister
(
const(char)* name
)

Meta