Global Git Username and Email Configuration

Email:

git config --global user.email "bilaltas@me.com"Code language: Bash (bash)

Username:

git config --global user.name "Bilal TAS"Code language: Bash (bash)

For one liners:

git config --global user.email "bilaltas@me.com" && git config --global user.name "Bilal TAS"Code language: Bash (bash)

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.