Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git config

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

git user config

$ git config --local user.name "John Doe"
$ git config --local 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 :: how to set-up username and email in git bash 
Shell :: Habilitar la ejecución de scripts para Powershell 
Shell :: installing gnome tweak tool 
Shell :: wsl ubuntu reboot 
Shell :: git cancel last commit 
Shell :: figma download linux 
Shell :: get git username and email 
Shell :: install postman ubuntu 
Shell :: git reset stash conflict 
Shell :: The file will have its original line endings in your working directory 
Shell :: ubuntu check if apache is running 
Shell :: como actualizar node en ubuntu 
Shell :: git check ssh connection 
Shell :: install helm on wsl 
Shell :: git fetch tags force 
Shell :: how to install tor browser in kali 
Shell :: git undo amend 
Shell :: uninstall node from linux debian 
Shell :: how to kill tasks using grep 
Shell :: pip upgrade stramlit 
Shell :: find folder in centos 8 
Shell :: how to remove the last character terminal 
Shell :: bash: npm: command not found 
Shell :: permission denied .sh 
Shell :: linux list services 
Shell :: wireshark brew 
Shell :: update manjaro linux 
Shell :: grep return n characters before or after match 
Shell :: how to extract zip file in ubuntu terminal 
Shell :: crontab file location 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =