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 "info@teqstars.com"
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 "info@teqstars.com"