Learn R Programming

worcs (version 0.1.17)

has_git_user: Check whether global 'Git' credentials exist

Description

Check whether the values user.name and user.email exist exist for the current repository. Uses git_signature_default.

Usage

has_git_user(repo = ".")

Value

Logical, indicating whether 'Git' global configuration settings could be retrieved, and contained the values user.name and user.email.

Arguments

repo

The path to the git repository.

Examples

Run this code
testdir <- file.path(tempdir(), "test_git_user")
dir.create(testdir)
gert::git_init(testdir)
has_git_user(testdir)
unlink(testdir, recursive = TRUE)

Run the code above in your browser using DataLab