Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git set email and username

git config --global user.name "Your Name"
git config --global user.email "youremail@yourdomain.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 email git

git config --global user.email "my.adresse@hotmail.com"
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

PREVIOUS NEXT
Code Example
Shell :: linker `cc` not found 
Shell :: git config username and password global 
Shell :: ps not found 
Shell :: how to kill a process on a port? 
Shell :: empty commit 
Shell :: flask_wtf install 
Shell :: install nano 
Shell :: logstash is not listening on ip address 
Shell :: update composer ubuntu 
Shell :: how to check my ip address on wsl 
Shell :: uninstall postman ubuntu 
Shell :: undo commits git 
Shell :: restart supervisor 
Shell :: start apache2 ubuntu 
Shell :: install ngrok ubuntu 20.04 
Shell :: ultimate power plan windows 10 
Shell :: server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none 
Shell :: install putty on ubuntu 
Shell :: how check status docker in ubuntu 
Shell :: dos2unix recursive folder 
Shell :: set the default branch to main 
Shell :: homebrew cocoapods 
Shell :: view git branches most recent first 
Shell :: cmd list dotnet frameworks installed 
Shell :: terminal get number of files in dir 
Shell :: how to check spark version 
Shell :: install psycopg2 ubuntu 20.04 
Shell :: shell script to check the directory exists 
Shell :: nodemon command not found linux 
Shell :: install pm2 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =