git2r (version 0.10.1)

show,git_note-method: Brief summary of note

Description

Brief summary of note

Usage

## S3 method for class 'git_note':
show(object)

Arguments

object
The git_note object

Value

  • None (invisible 'NULL').

Examples

Run this code
## Create and initialize a repository in a temporary directory
path <- tempfile(pattern="git2r-")
dir.create(path)
repo <- init(path)
config(repo, user.name="Alice", user.email="alice@example.org")

## Create a file, add and commit
writeLines("Hello world!", file.path(path, "example.txt"))
add(repo, "example.txt")
commit(repo, "First commit message")

## Create note
note_create(commits(repo)[[1]], "My note")

Run the code above in your browser using DataLab