List Known Git Signatures from the User Cache

signature_ls(repo = ".")

Arguments

repo

A path to a github repository. Defaults to the working directory.

Value

A tibble containing three columns:

  1. The the signature column contains character strings of the exact Git signatures (e.g. "John Smith jsmith@example.com") or regular expressions (e.g. "^John S(mith|\.)").

  2. The is_user column indicates whether the signature/pattern belongs to the student (FALSE would denote a Git user of MDS faculty).

  3. The is_regexp column denotes if the signature column is a fixed literal or a regular expression.

Examples

# navigate to a Git repo and run: signature_ls()
#> # A tibble: 0 x 3 #> # … with 3 variables: signature <chr>, is_user <lgl>, is_regexp <lgl>