branch_remote_url function

Remote url of a branch

Remote url of a branch

branch_remote_url(branch = NULL)

Arguments

  • branch: The branch

Returns

character string with remote url

Examples

## Not run: ## Initialize two temporary repositories path_bare <- tempfile(pattern="git2r-") path_repo <- tempfile(pattern="git2r-") dir.create(path_bare) dir.create(path_repo) repo_bare <- init(path_bare, bare = TRUE) repo <- clone(path_bare, path_repo) ## Config user and commit a file config(repo, user.name = "Alice", user.email = "alice@example.org") ## Write to a file and commit lines <- "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do" writeLines(lines, file.path(path_repo, "example.txt")) add(repo, "example.txt") commit(repo, "First commit message") ## Push commits from repository to bare repository ## Adds an upstream tracking branch to branch 'master' push(repo, "origin", "refs/heads/master") ## Get remote url of tracking branch to branch 'master' branch_remote_url(branch_get_upstream(repository_head(repo))) ## End(Not run)
  • Maintainer: Stefan Widgren
  • License: GPL-2
  • Last published: 2025-03-29

Downloads (last 30 days):