Set Github Repo Email And Name

[Solved] Set Github Repo Email And Name | Shell - Code Explorer | yomemimo.com
Question : set github username and mail

Answered by : steve

# Global configuration
git config --global user.name "FIRST_NAME LAST_NAME"
git config --global user.email "[email protected] config user.name "FIRST_NAME LAST_NAME"
# Repository specific
git config user.email "[email protected]"
git config user.name "FIRST_NAME LAST_NAME"
# Check your configuration
cat .git/config"

Source : https://support.atlassian.com/bitbucket-cloud/docs/configure-your-dvcs-username-for-commits/ | Last Update : Wed, 07 Sep 22

Answers related to set github repo email and name

Code Explorer Popular Question For Shell