Git allows you to configure a global and per-project Git profile consisting of name and email address.
Git commands come handy when you want to set or change your git identity. Changes only affect future commits.
Set or update user name for local Git profile using terminal
The first thing you should do when you install Git is to set your name and email address.
This is important because every Git commit uses this information. By default this information will be used if none other specified.
And itโs immutably baked into the commits you create.
Commands to configure Git user profile
git config --global user.name "your-name"git config --global user.email "your-email"
The --global option will set your global commit name & email address.
Once done, verify that the information is configured by executing below command in terminal:
git config --list
Example
git config --global user.name "Jane Doe"
git config --global user.email "jane.doe@example.com"
Hope you like this!
Keep helping and happy ๐ coding
Related Articles
Deepen your understanding with these curated continuations.
Restart Docker Container
This article explains about deletion of a local branch from git using terminal. Also includes explanation about deleting branch forcefully.
Delete a local Git branch using terminal
This article explains about deletion of a local branch from git using terminal. Also includes explanation about deleting branch forcefully.
Zsh + Oh My Zsh: The Ultimate Terminal Setup Guide
Transform your terminal with Zsh and Oh My Zsh โ themes, plugins, aliases, and productivity hacks. From boring bash to powerful command line.