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.
git_user(name, email, overwrite = !has_git_user(), verbose = TRUE)
Character. The user name you want to use with 'Git'.
Character. The email address you want to use with 'Git'.
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.
Logical. Whether or not to print status messages to the console. Default: TRUE
No return value. This function is called for its side effects.
do.call(git_user, worcs:::get_user())
#> To set the 'Git' username and email, call 'git_user()' with the argument 'overwrite = TRUE'.