Skip to content

Commit 14b91d7

Browse files
committed
Move repo argument to the end
1 parent 55584db commit 14b91d7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

R/config.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ git_config_global <- function() {
7979
#' @param add if `TRUE`, append a new entry for `name` instead of replacing
8080
#' existing one(s). Equivalent to `git config --add`. Only supported for
8181
#' string values.
82-
git_config_set <- function(name, value, repo = '.', add = FALSE) {
82+
git_config_set <- function(name, value, add = FALSE, repo = '.') {
8383
if (!is.logical(add) || length(add) != 1) {
8484
stop("Argument add must be a logical of length 1.", call. = FALSE)
8585
}

man/git_config.Rd

Lines changed: 1 addition & 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)