Git Global Configurations

[Solved] Git Global Configurations | Haskell - 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

Question : git global configurations

Answered by : laya-godfrey-cleement

#view all settings
$ git config --list --show-origin
#set global configurations for your git
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
git config --global init.defaultBranch main

Source : https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup | Last Update : Sun, 02 Oct 22

Answers related to git global configurations

Code Explorer Popular Question For Haskell