Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git config

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

where is global config file for git

git config --global --edit 
# It will open git config file and you can make necessary changes
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 :: remove user linux 
Shell :: git list all remote branches 
Shell :: cd /usr/local/bin/composer 
Shell :: docker image get extract dockerfile 
Shell :: windows kill process 
Shell :: install google chrome on ubuntu 
Shell :: find linux with extension 
Shell :: how to tar and gzip a file in linux 
Shell :: homebrew zsh completion 
Shell :: git push example 
Shell :: vs code terminal open file in separate window 
Shell :: conda install packages from requirements.txt 
Shell :: install rancher 
Shell :: IF NOT DIR BASH 
Shell :: mac update path permanently 
Shell :: rc.local not running 
Shell :: docker-compose update code without using build again 
Shell :: grep search for string in directory 
Shell :: install font awesome linux 
Shell :: linux cmd uninstall 
Shell :: ngrok minecraft server 
Shell :: E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it? 
Shell :: bash run a command every x second 
Shell :: install wkhtmltopdf linux command 
Shell :: zsh fzf plugin 
Shell :: powershell check if user is admin 
Shell :: 10 digit validation in jquery 
Shell :: add user to sudoer 
Shell :: sudo: effective uid is not 0 
Shell :: visual studio code ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =