Skip to content

Commit 49c9737

Browse files
committed
Revert "Cleanup exports"
This reverts commit 03a58a4.
1 parent 03a58a4 commit 49c9737

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

NAMESPACE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ S3method(summary,git_tag)
6565
S3method(summary,git_tree)
6666
export(add)
6767
export(ahead_behind)
68+
export(as.data.frame)
6869
export(blame)
6970
export(blob_create)
7071
export(branch_create)
@@ -90,6 +91,7 @@ export(cred_token)
9091
export(cred_user_pass)
9192
export(default_signature)
9293
export(descendant_of)
94+
export(diff)
9395
export(discover_repository)
9496
export(fetch)
9597
export(fetch_heads)
@@ -119,6 +121,7 @@ export(libgit2_version)
119121
export(lookup)
120122
export(lookup_commit)
121123
export(ls_tree)
124+
export(merge)
122125
export(merge_base)
123126
export(note_create)
124127
export(note_default_ref)

R/diff.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,3 +300,6 @@ diff.git_tree <- function(x,
300300
as.integer(context_lines), as.integer(interhunk_lines),
301301
old_prefix, new_prefix, id_abbrev, path, max_size)
302302
}
303+
304+
##' @export
305+
base::diff

R/merge.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ merge.character <- function(x = ".", y = NULL, commit_on_success = TRUE,
104104
merge.git_repository(x, y, commit_on_success, merger, fail)
105105
}
106106

107+
##' @export
108+
base::merge
109+
107110
##' @export
108111
format.git_merge_result <- function(x, ...) {
109112
if (isTRUE(x$up_to_date))

R/tree.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ as.data.frame.git_tree <- function(x, ...) {
7676
stringsAsFactors = FALSE)
7777
}
7878

79+
##' @export
80+
base::as.data.frame
81+
7982
##' Coerce entries in a git_tree to a list of entry objects
8083
##'
8184
##' @param x The tree \code{object}

man/reexports.Rd

Lines changed: 6 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)