List Known Git Signatures from the User Cache
signature_ls(repo = ".")
repo | A path to a github repository. Defaults to the working directory. |
---|
A tibble containing three columns:
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|\.)").
The is_user
column indicates whether the signature/pattern belongs
to the student (FALSE would denote a Git user of MDS faculty).
The is_regexp
column denotes if the signature column is a fixed
literal or a regular expression.
# 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>