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 and username

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

git set name and email

git config --global user.name "Peter"
git config --global user.email "peter@gmail.com"
Comment

git change email

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

update git config username and email

git config --global --edit
Comment

set git user name and user email

git config --global user.name "Name"
git config --global user.email "exe@exe.com"
Comment

change git username and email

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

git set username and email

git config --global user.email yournew@email.com 

git config --global user.name yournewgoodname
Comment

PREVIOUS NEXT
Code Example
Shell :: filename too long git 
Shell :: how to uninstall spacevim 
Shell :: check react version 
Shell :: sudo: unzip: command not found 
Shell :: kill process running on port mac 
Shell :: apache2.service is not active cannot reload. ubuntu 
Shell :: git set email for project 
Shell :: install imutils 
Shell :: empty commit 
Shell :: docker rm all containers 
Shell :: install netstat ubuntu 
Shell :: remote origin already exists 
Shell :: list used ports on mac 
Shell :: copy ssh key ubuntu 
Shell :: pip install tqdm 
Shell :: start apache2 ubuntu 
Shell :: how to check firebase version 
Shell :: how to install beautifulsoup4 
Shell :: install gem ubuntu 
Shell :: how to uninstall jdk java completely from ubuntu linux 
Shell :: PHP Fatal error: Class UpdateHelperComposerPlugin contains 2 abstract methods and must therefore be declared abstract or implement the remaining methods (ComposerPluginPluginInterface::deactivate 
Shell :: pip install from requirements.txt 
Shell :: firebase : File C:UsersAbrar MahiAppDataRoaming pmfirebase.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at 
Shell :: git delete local branch except master 
Shell :: port finding in macos 
Shell :: GIT - Cleaning ignored file when .gitignore added after changes 
Shell :: yarn nodemon 
Shell :: git asking for password every time 
Shell :: Warning: os-prober will not be executed to detect other bootable partitions. Systems on them will not be added to the GRUB boot configuration. 
Shell :: find and stop docker engine mac 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =