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

what to do with the git config

Follow the steps mentioned inside the below link: 
https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup

Git config path: C:UsersUSER_NAMEAppDataLocalProgramsGitetc
Comment

PREVIOUS NEXT
Code Example
Shell :: alpine add user 
Shell :: check jitsi ubuntu version 
Shell :: install tor browser on kali linux 
Shell :: how do i install tkinter on windows 7 
Shell :: install php on wsl2 
Shell :: python.h missing 
Shell :: kill a process on ubuntu 
Shell :: speed up video with ffmpeg 
Shell :: how to upgrade snap packages 
Shell :: bash compare two lists of checksums 
Shell :: tensorflow python 3.9 
Shell :: git config github username 
Shell :: how to prevent idle ubuntu suspending 
Shell :: ubuntu open with code 
Shell :: ubuntu desktop file folder 
Shell :: git log with numbers 
Shell :: vboxmanage export vm to ova 
Shell :: kubectl exec 
Shell :: create zip file ubuntu 
Shell :: dart update 
Shell :: free up ram in linux ubuntu 
Shell :: increase upload size apache 
Shell :: how to make ubuntu faster 
Shell :: debian give write permission 
Shell :: uninstall gitkraken in ubuntu 
Shell :: flutter doctor android license error 
Shell :: download bangla font ubuntu 
Shell :: how to add user to group 
Shell :: snap install chrome 
Shell :: where are ubuntu files stored in windows 10 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =