Skip to content

Commit

Permalink
Register symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
stewid committed Oct 16, 2024
1 parent 52329f8 commit 44ecfca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion R/tag.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## git2r, R bindings to the libgit2 library.
## Copyright (C) 2013-2019 The git2r contributors
## Copyright (C) 2013-2024 The git2r contributors
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License, version 2,
Expand All @@ -26,6 +26,7 @@
##' @param force Overwrite existing tag. Default = FALSE
##' @return invisible(\code{git_tag}) object
##' @export
##' @useDynLib git2r git2r_tag_create
##' @examples
##' \dontrun{
##' ## Initialize a temporary repository
Expand Down Expand Up @@ -116,6 +117,7 @@ is_tag <- function(object) {
##' delete.
##' @return \code{invisible(NULL)}
##' @export
##' @useDynLib git2r git2r_tag_delete
##' @examples
##' \dontrun{
##' ## Initialize a temporary repository
Expand Down Expand Up @@ -162,6 +164,7 @@ tag_delete <- function(object = ".", name = NULL) {
##' @template repo-param
##' @return list of tags in repository
##' @export
##' @useDynLib git2r git2r_tag_list
##' @examples
##' \dontrun{
##' ## Initialize a temporary repository
Expand Down
4 changes: 3 additions & 1 deletion R/tree.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## git2r, R bindings to the libgit2 library.
## Copyright (C) 2013-2019 The git2r contributors
## Copyright (C) 2013-2024 The git2r contributors
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License, version 2,
Expand Down Expand Up @@ -121,6 +121,7 @@ as.list.git_tree <- function(x, ...) {
##' @param object the \code{commit} or \code{stash} object
##' @return A S3 class git_tree object
##' @export
##' @useDynLib git2r git2r_commit_tree
##' @examples
##' \dontrun{
##' ## Initialize a temporary repository
Expand Down Expand Up @@ -294,6 +295,7 @@ is_tree <- function(object) {
##' \item{name}{filename of the tree entry} \item{len}{object size
##' of blob (file) entries. NA for other objects.} }
##' @export
##' @useDynLib git2r git2r_tree_walk
##' @examples
##' \dontrun{
##' ## Initialize a temporary repository
Expand Down

0 comments on commit 44ecfca

Please sign in to comment.