Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to config username and email in git

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

git config email

$ git config --global user.email fulanodetal@exemplo.br
Comment

git config set email

git config --global user.email youremail@example.com
#git config can be used to set user-specific configuration values like email, username, file format, and so on.
#The –global flag tells GIT that you’re going to use that email for all local repositories.
Comment

git config global username and email

// -> Goto .git
// -> Then edit config 

[user]
	name = xyzzz
	email = abhishek@gmail.com

Comment

PREVIOUS NEXT
Code Example
Shell :: git update 
Shell :: how to undo a commit sent that was pushed 
Shell :: size of folder 
Shell :: check vm ram details in linux 
Shell :: firebase deploy with token 
Shell :: edit crontab daily 
Shell :: how do i make a gif from youtube 
Shell :: how to upload code to github 
Shell :: react-icons 
Shell :: information about files linux 
Shell :: how to push a project to github 
Shell :: git push ci skip 
Shell :: element function in terraform 
Shell :: bash array initialization multiple lines 
Shell :: libc-bin error 
Shell :: use touch id to sudo 
Shell :: where to find zshrc mac 
Shell :: ffprobe number of frames 
Shell :: windows 10 sfc scan 
Shell :: youtube dl download linux 
Shell :: how to install deb file in kali linux 
Shell :: prettier code formatter is removing ; 
Shell :: yarn cache directory 
Shell :: export docker container 
Shell :: Invalid response body while trying to fetch 
Shell :: helm install 
Shell :: what service is listen on what port linux 
Shell :: git push heroku master everything up-to-date 
Shell :: git lfs add file 
Shell :: refresh prometheus configuration 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =