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 :: fix corrupt pdf command line 
Shell :: github start 
Shell :: docker run multiple commands in dockerfile 
Shell :: grpc client 
Shell :: virtualbox boot from usb 
Shell :: bitbucket ssh key not working 
Shell :: uninstall adobe creative cloud 
Shell :: linux help 
Shell :: npm install, npm install for web developer 
Shell :: how to push your code to github 
Shell :: install virtualbox linux 
Shell :: ghost in the shell full movie 
Shell :: dir to file txt 
Shell :: jq command in linux 
Shell :: add line to beginning of file shell script 
Shell :: removing package using snap 
Shell :: c interpreter 
Shell :: common use of python sys library 
Shell :: ssh config file 
Shell :: filter jq 
Shell :: terraform 
Shell :: how to uninstall from /var to increase its size 
Shell :: how to upen image in kali linux 
Shell :: elasticsearch diff between must and should 
Shell :: dependencies to install python3.10 
Shell :: linux traverse all subdirectories and do action 
Shell :: cmd NETWORK SERVICE 
Shell :: force fsck debian 
Shell :: linux copy move 
Shell :: homebrew gnu screen 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =