Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git change username email

# FOR ALL REPOS
## change username
git config --global user.name "John Doe"
## change email address
git config --global user.email "johndoe@example.com"

# FOR CURRENT-DIRECTORY REPO ONLY
## change username
git config user.name "John Doe"
## change email address
git config user.email "johndoe@example.com"
Comment

git set email for project

git config --global user.name "Your Name"
git config --global user.email "youremail@yourdomain.com"
Comment

git change email

git config --global user.email "your_email@abc.com"
Comment

change git username and email

$ git config --global user.email "email@example.com"
Comment

PREVIOUS NEXT
Code Example
Shell :: git config setting 
Shell :: git config username 
Shell :: remove nginx 
Shell :: robo 3t download for ubuntu 18.04 
Shell :: brew nmap install 
Shell :: datetime echo shell script 
Shell :: ubuntu install clamav 
Shell :: paint for ubuntu 
Shell :: rails how to check environment 
Shell :: git delete local branches not on remote 
Shell :: sound switch ubuntu 
Shell :: install whatsapp in ubuntu 
Shell :: check ports in use windows 8080 
Shell :: get last element in an array bash 
Shell :: cannot find jsonwebtoken 
Shell :: git show last commit 
Shell :: install docker-compose ubuntu 
Shell :: git update submodule 
Shell :: install dropbox ubuntu 
Shell :: Apache Maven brew 
Shell :: adb command to open deeplink 
Shell :: search for a commit in git logs 
Shell :: diretcory size linux 
Shell :: command to check mongodb version 
Shell :: check if oh-my-zsh is installed 
Shell :: git show-branch tree command line 
Shell :: clone a conda environment 
Shell :: duing push error: RPC failed; curl 18 transfer closed with outstanding read data remaining send-pack: unexpected disconnect while reading sideband packet 
Shell :: mac find large folders 
Shell :: install postcss 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =