Skip to Content

How to Configure your Git username and email

Configure your Git username and email
30 November 2020 by
How to Configure your Git username and email
TeqStars

Global Configuration

You can set your global commit name and email address by run the git config command with the --global option

1. Open your Terminal/ Command Prompt.

2. Set username using below command.

git config --global user.name "teqstars-odoo"
3. Set email address using below command.

git config --global user.email "[email protected]"


Repository Level Configuration

1. Open your Terminal/ Command Prompt and move to the Repository.

2. Set username using below command.

git config user.name "teqstars-odoo"
3. Set email address using below command.

git config user.email "[email protected]"




# Git
Share this post
Tags
Git
Archive