Answers for "configure git"

35

git config

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
Posted by: Guest on February-08-2020
5

set git editor

$ git config --global core.editor vim
Posted by: Guest on June-08-2020
8

set username git

git config --global user.name "My Name"
Posted by: Guest on March-21-2020
15

git config

git config --global user.name "John Doe"
git config --global user.email [email protected]
Posted by: Guest on October-24-2020
1

configure git

//add username
git config --global user.name "your_username"

//add email
git config --global user.email "[email protected]"

//check configuration
git config --global --list
Posted by: Guest on July-10-2021
0

git config

$ git config --list --show-origin
Posted by: Guest on March-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language