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 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 :: ubuntu isolate workspaces 
Shell :: install drush 
Shell :: To install mailutils to send mail from linux centos terminal 
Shell :: apt use ipv4 
Shell :: git error: More than one value for the key user.name: 
Shell :: unix:///tmp/supervisor.sock refused connection 
Shell :: how to install gnome user theme extension terminal 
Shell :: interface graphique sur python 
Shell :: docker machine ip 
Shell :: install ip addr on ubuntu 
Shell :: extract rockyou.txt kali linux 
Shell :: delete all files in a folder in ubuntu 
Shell :: stop adb device 
Shell :: completely uninstall apache2 
Shell :: certbot enable nginx renew 
Shell :: set zsh as default ubuntu 
Shell :: autoclicker linux 
Shell :: list cron jobs for all users 
Shell :: fish shell add to path 
Shell :: how to install pyqt5 
Shell :: ssh to a docker container 
Shell :: rails rollback multiple migrations 
Shell :: bashrc file location in linux 
Shell :: add all files in directory to git 
Shell :: composer create-project symfony/website-skeleton 
Shell :: linux how to kill any process on port 
Shell :: uninstall tensorflow colab 
Shell :: increment variable in batch file 
Shell :: for loop in shell script 
Shell :: kill port mac 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =