git_user: Set global 'Git' credentials

View source: R/github.R

git_userR Documentation

Set global 'Git' credentials

Description

This function is a wrapper for git_config_global_set. It sets two name/value pairs at once: name = "user.name" is set to the value of the name argument, and name = "user.email" is set to the value of the email argument.

Usage

git_user(name, email, overwrite = !has_git_user(), verbose = TRUE)

Arguments

name

Character. The user name you want to use with 'Git'.

email

Character. The email address you want to use with 'Git'.

overwrite

Logical. Whether or not to overwrite existing 'Git' credentials. Use this to prevent code from accidentally overwriting existing 'Git' credentials. The default value uses has_git_user to set overwrite to FALSE if user credentials already exist, and to TRUE if no user credentials exist.

verbose

Logical. Whether or not to print status messages to the console. Default: TRUE

Value

No return value. This function is called for its side effects.

Examples

do.call(git_user, worcs:::get_user())

worcs documentation built on Oct. 26, 2023, 1:08 a.m.