Skip to content

Commit 955ffce

Browse files
committed
Add '...' argument to checkout method for consistency with v0.21.0
Signed-off-by: Stefan Widgren <[email protected]>
1 parent 032537c commit 955ffce

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

R/checkout.R

+3-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ checkout_git_object <- function(object, force) {
9595
##' @param path Limit the checkout operation to only certain
9696
##' paths. This argument is only used if branch is NULL. Default
9797
##' is \code{NULL}.
98+
##' @param ... Additional arguments. Not used.
9899
##' @return invisible NULL
99100
##' @export
100101
##' @examples
@@ -159,7 +160,8 @@ checkout <- function(object = NULL,
159160
branch = NULL,
160161
create = FALSE,
161162
force = FALSE,
162-
path = NULL)
163+
path = NULL,
164+
...)
163165
{
164166
if (checkout_git_object(object, force))
165167
return(invisible(NULL))

man/checkout.Rd

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)