git2r (version 0.10.1)

note_remove: Remove the note for an object

Description

Remove the note for an object

Usage

note_remove(note, author = default_signature(note@repo),
  committer = default_signature(note@repo))

## S3 method for class 'git_note': note_remove(note, author = default_signature(note@repo), committer = default_signature(note@repo))

Arguments

note
The note to remove
author
Signature of the notes commit author.
committer
Signature of the notes commit committer.

Value

  • 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_1 <- commit(repo, "Commit message 1")


## Create note in default namespace
note_1 <- note_create(commit_1, "Note-1")

## Create note in named (review) namespace
note_2 <- note_create(commit_1, "Note-2", ref="refs/notes/review")

## List notes in default namespace
notes(repo)

## List notes in 'review' namespace
notes(repo, "review")

## Remove notes
note_remove(note_1)
note_remove(note_2)

## List notes in default namespace
notes(repo)

## List notes in 'review' namespace
notes(repo, "review")

Run the code above in your browser using DataCamp Workspace