Horje
git config Code Example
git config
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
Source: git-scm.com
set git editor
$ git config --global core.editor vim
Source: git-scm.com
configure git
//add username
git config --global user.name "your_username"

//add email
git config --global user.email "your_email_address@example.com"

//check configuration
git config --global --list
git config
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
git config
$ git config --list --show-origin
Source: git-scm.com
git config
# Get system value
$ git config --system --get https.proxy
$ git config --system --get http.proxy

# Get global value
$ git config --global --get https.proxy
$ git config --global --get http.proxy

# Check configuration for your user
$ cat $HOME/.gitconfig

# Unset system value
$ git config --system --unset https.proxy
$ git config --system --unset http.proxy

# Unset global value
$ git config --global --unset https.proxy
$ git config --global --unset http.proxy




Shell

Related
Module not found: Can't resolve '@material-ui/core/Button' Code Example Module not found: Can't resolve '@material-ui/core/Button' Code Example
sudo: unzip: command not found Code Example sudo: unzip: command not found Code Example
Macbook git user config global Code Example Macbook git user config global Code Example
git config location Code Example git config location Code Example
snap install atom Code Example snap install atom Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
17