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 set email and name for repo

# For setting inside project folder
git config user.name "Neeraj Singh"
git config user.email 'nnneerajjj@gmail.com'
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 :: install pip kali 
Shell :: git origin 
Shell :: get name of repository git 
Shell :: ufw delete rule 
Shell :: bash: make: command not found 
Shell :: surge install 
Shell :: add user to sudoers debian 
Shell :: install sudo 
Shell :: snap install clion 
Shell :: ip on mac 
Shell :: firewall-cmd add port 
Shell :: heroku cli connect to app 
Shell :: pip install boto3 
Shell :: change zsh to bash 
Shell :: reload bashrc 
Shell :: Node version mac1000 
Shell :: install epel amazon linux 2 
Shell :: how to commit code to bitbucket first time 
Shell :: check th binggest file in linux 
Shell :: git get last commit id 
Shell :: bash get date format 
Shell :: xampp the installer requires root privileges 
Shell :: find xcode version 
Shell :: centos cpus 
Shell :: Run `bundle install` to install missing gems 
Shell :: copy ssh keys to remote server windows 10 openSSH 
Shell :: open wsl folder in windows explorer 
Shell :: ls human readable file size 
Shell :: install nginx ubuntu 20.04 
Shell :: check postgres process in mac 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =