Skip to content

git

The git resource reference. This resource configures git. Currently only user.name and user.email is supported.

Parameters:

  • username: (string) The global username to set using the command git config --global user.name.

  • email: (string) The global email to set using the command git config --global user.email.

Example usage:

codify.json
[
{
"type": "git",
"email": "[email protected]",
"username": "testuser"
}
]