This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Sensitive informations | |
| FULLNAME='Name Surname' # Enter your fullname. | |
| EMAIL='name.surname@example.com' # Enter your email. | |
| GITHUB_TOKEN='xxxxx' # Enter your Github token. It can be obtained here: https://github.com/settings/tokens. You need to define the "admin:gpg_key" and "admin:public_key" scopes. | |
| GPG_PASSPHRASE="xxxxx" # Enter GPG passphrase. | |
| # Configure Git | |
| git config --global user.name "$FULLNAME" |