Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

git config

git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
Comment

git config command

git config
Comment

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
Comment

PREVIOUS NEXT
Code Example
Shell :: sql like bracket 
Shell :: ubuntu dconf editor install 
Shell :: find directory ubuntu 
Shell :: how to untar tar.gz 
Shell :: compare two folders recursively linux 
Shell :: reload nginx 
Shell :: conda install networkx 
Shell :: kill vlc in linux 
Shell :: upgrade ubuntu 16.04 to 20.04 
Shell :: install nodemon dev 
Shell :: terraform apply auto approve 
Shell :: sudo not found docker 
Shell :: gnome disk utility ubuntu 
Shell :: see my dns server linux 
Shell :: git show-branch tree command line 
Shell :: make: g++: Command not found 
Shell :: Unrecognized command "eject" 
Shell :: linux apache stop 
Shell :: command failed with exit code 1: yarn build 
Shell :: add user to sudoers 
Shell :: factorial of a number bash 
Shell :: bash if element in array 
Shell :: locate command not found 
Shell :: powershell foreach line in file read line 
Shell :: download nbextensions 
Shell :: embed a youtube video in github readme 
Shell :: Pipreqs: command not found 
Shell :: crontab logs centos 
Shell :: Install django requirements from txt file 
Shell :: check if django is installed 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =