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'.
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 toFALSE
if user credentials already exist, and toTRUE
if no user credentials exist.- verbose
Logical. Whether or not to print status messages to the console. Default: TRUE
Examples
do.call(git_user, worcs:::get_user())
#> To set the 'Git' username and email, call 'git_user()' with the argument 'overwrite = TRUE'.