get_commits_tags | R Documentation |
Get commits associated chronologically with tags
get_commits_tags(repo = ".", ref = "main", path = NULL, silent = FALSE)
repo |
a path to a repository or a |
ref |
The name of a reference to list commits from e.g. a tag or a branch. The default is NULL for the current branch. |
path |
The path to a file. If not NULL, only commits modifying
this file will be returned. Note that modifying commits that
occurred before the file was given its present name are not
returned; that is, the output of |
silent |
Logical. Whether to hide messages. |
A tibble with one line for each commit and the following columns:
sha: sha of the commit
summary: First line of the commit message
message: Full content of the commit message
author: author of the commit
email: email of the author
when: commit time
order: order of commit messages. 1 is the oldest.
tag.name: name of tag associated with all commits since the last tag
tag.message: message of the tagged commit
repo <- fake_repo() get_commits_tags(repo = repo)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.