git_hashsig_create_fromfile

Compute a similarity signature for a text file

This walks through the file, only loading a maximum of 4K of file data at a time. Otherwise, it acts just like git_hashsig_create.

package extern (C) nothrow @nogc
int
git_hashsig_create_fromfile

Parameters

out_ .git_hashsig**

The computed similarity signature.

path const(char)*

The path to the input file.

opts .git_hashsig_option_t

The signature computation options (see above).

Return Value

Type: int

0 on success, git_error_code.GIT_EBUFS if the buffer doesn't contain enough data to compute a valid signature (unless git_hashsig_option_t.GIT_HASHSIG_ALLOW_SMALL_FILES is set), or error code.

Meta