Function getLogs

  • Returns information about Git commits in application-defined JavaScript objects. The JavaScript objects are created from the return of the GitAnnexAPI.log method.

    Type Parameters

    • T

      The application-defined type of the returned objects.

    Parameters

    • guard: ((o) => o is T)

      The type predicate to validate each commit.

        • (o): o is T
        • Parameters

          • o: unknown

          Returns o is T

    • columns: [string, Parser?][]

      Maps the columns returned by gitOptions.LogOptions.--format to property names. A parser to convert the string to another data type may be provided for each column.

    • repositoryPath: string

      The path of the repository to interrogate.

    • gitOptions: string[] | LogOptions

      The LogOptions for the command. The LogOptions.--format option is required.

    • Optional commandParameters: string | string[]

      The parameters for the log command.

    • Optional relativePaths: string | string[]

      The files for the log command. If specified, helper function gitPath or gitPaths is called internally.

    • Optional columnDelimiter: string

      The column delimiter used by gitOptions.LogOptions.--format. If unspecified, \t is used to split at %x09 in gitOptions.LogOptions.--format.

    Returns Promise<T[]>

    An array containing objects passing the type guard function.