Git Config User With Cli

[Solved] Git Config User With Cli | Shell - Code Explorer | yomemimo.com
Question : git config username

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 : git config global username

Answered by : perfect-platypus-vxjfvhpzdkfy

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

Source : | Last Update : Sat, 31 Oct 20

Question : git Config User with Cli

Answered by : winwinmaw

$ git config --global user.name ”yourgitusername”
$ git config --global user.email ”[email protected]"

Source : | Last Update : Mon, 23 May 22

Answers related to git config user with cli

Code Explorer Popular Question For Shell