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

set email git

git config --global user.email "my.adresse@hotmail.com"
Comment

change git username and email

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

PREVIOUS NEXT
Code Example
Shell :: git revert to commit 
Shell :: netbeans 8.2 download ubuntu 
Shell :: linux killall python 
Shell :: how to get rid of local git repository 
Shell :: alias bash laravel 
Shell :: what is pipe line command in linux? 
Shell :: install bootstrap vue laravel 7 
Shell :: gcloud check region 
Shell :: 10250: connect: no route to host kubernetes 
Shell :: flask install venv 
Shell :: case insensitive zgrep 
Shell :: download entire website Linux terminal 
Shell :: uninstall dependency npm 
Shell :: pdf to jpg terminal 
Shell :: resolve merge conflicts git 
Shell :: linux whereis command 
Shell :: install vim plug neovim 
Shell :: install expo react native 
Shell :: linux env 
Shell :: install react dependencies 
Shell :: bash data types 
Shell :: how to push local code to gitlab 
Shell :: yarn remove 
Shell :: git log all branches 
Shell :: vim count ocurrences 
Shell :: cli kill what is listening on port 
Shell :: clear the git stash 
Shell :: git mirror repository 
Shell :: remove remote 
Shell :: install vlc in centos 8 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =