git2r (version 0.10.1)

is_empty: Check if repository is empty

Description

Check if repository is empty

Usage

is_empty(repo)

## S3 method for class 'missing': is_empty()

## S3 method for class 'git_repository': is_empty(repo)

Arguments

repo
The repository to check if it's empty

Value

  • TRUE if empty else FALSE

Examples

Run this code
## Initialize a temporary repository
path <- tempfile(pattern="git2r-")
dir.create(path)
repo <- init(path)

## Create a user
config(repo, user.name="Alice", user.email="alice@example.org")

## Check if it's an empty repository
is_empty(repo)

## Commit a file
writeLines("Hello world!", file.path(path, "example.txt"))
add(repo, "example.txt")
commit(repo, "First commit message")

## Check if it's an empty repository
is_empty(repo)

Run the code above in your browser using DataLab