Global Configuration Git

[Solved] Global Configuration Git | Shell - Code Explorer | yomemimo.com
Question : git config global

Answered by : tame-toad

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]

Source : https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup | Last Update : Sat, 15 Feb 20

Question : where is global config file for git

Answered by : sagar-shrestha

git config --global --edit
# It will open git config file and you can make necessary changes

Source : | Last Update : Fri, 04 Jun 21

Question : global configuration git

Answered by : jrmew

git config --global user.name "pseudo"
git config --global user.email "[email protected]"
git config --global user.password "password"

Source : | Last Update : Fri, 21 May 21

Answers related to global configuration git

Code Explorer Popular Question For Shell