Git Configurations Command

[Solved] Git Configurations Command | Shell - Code Explorer | yomemimo.com
Question : Git configurations command

Answered by : akshay-dikare

//Commands to configure your Git username and email
$ git config --global user.name "Emma Paris"
$ git config --global user.email "[email protected]"
//TO see list of configuration
$ git config --list

Source : https://www.atlassian.com/git/tutorials/install-git#windows | Last Update : Tue, 23 Aug 22

Answers related to git configurations command

Code Explorer Popular Question For Shell