committer: Signature of the notes commit committer.
Returns
invisible NULL
Examples
## Not run:## Create and initialize a repository in a temporary directorypath <- tempfile(pattern="git2r-")dir.create(path)repo <- init(path)config(repo, user.name ="Alice", user.email ="alice@example.org")## Create a file, add and commitwriteLines("Hello world!", file.path(path,"example.txt"))add(repo,"example.txt")commit_1 <- commit(repo,"Commit message 1")## Create note in default namespacenote_1 <- note_create(commit_1,"Note-1")## Create note in named (review) namespacenote_2 <- note_create(commit_1,"Note-2", ref="refs/notes/review")## List notes in default namespacenotes(repo)## List notes in 'review' namespacenotes(repo,"review")## Remove notesnote_remove(note_1)note_remove(note_2)## List notes in default namespacenotes(repo)## List notes in 'review' namespacenotes(repo,"review")## End(Not run)