Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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 :: get list of all branches github 
Shell :: install vscode linux 
Shell :: vim how to append to every line 
Shell :: open jupyter notebook with anaconda in powershell 
Shell :: see map size linux 
Shell :: sudo apt install ubuntu-desktop ? 
Shell :: ubuntu set date time command line 
Shell :: install magento 2 command line composer 
Shell :: upgrade seaborn version 
Shell :: git push -u origin master 
Shell :: how to run verilog files in linux 
Shell :: install plasma kde manjaro 
Shell :: How to install LAMP in Ubuntu 18.04? 
Shell :: is there any difference between git push and git push origin master 
Shell :: generate patch file git 
Shell :: list file in tar archive 
Shell :: split string in shell script 
Shell :: kill all process 
Shell :: bash do multiple times 
Shell :: Skype Downlaod Command. 
Shell :: update aws amplify cli 
Shell :: bash loop array 
Shell :: bash read file into variable 
Shell :: intsall ifconfig mac os 
Shell :: windows where are pip packages installed 
Shell :: docker remove tag 
Shell :: vscode tab not working 
Shell :: git unadd all files 
Shell :: kill process ubuntu 
Shell :: slugify npm 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =