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 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 email git

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

set github repo email and name

git config user.email 'email@example.com'
git config user.name 'Masroor Hussain'
Comment

set name and email git

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

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

git config --global user.name yournewgoodname
Comment

PREVIOUS NEXT
Code Example
Shell :: delete all files smaller than a certain size linux 
Shell :: get connected wifi password 
Shell :: bash gnome-terminal Unable to init server: Could not connect: Connection refused # Failed to parse arguments: Cannot open display: 
Shell :: show fortigate uptime 
Shell :: tor ubuntu 
Shell :: bash curl weather report 
Shell :: git discard all changes 
Shell :: git stop tracking directory 
Shell :: install readline-sync 
Shell :: check disk space ubuntu 
Shell :: docker exec as root 
Shell :: php /usr/local/bin/composer to composer 
Shell :: pip install docusign_esign 
Shell :: screen recorder linux 
Shell :: bashrc autocomplete case insensitive 
Shell :: install kubectx 
Shell :: doctrine cache clear 
Shell :: how to unlock minimize button on gnome 
Shell :: linux tail colorful 
Shell :: docker no space left on device 
Shell :: stop localhost server 
Shell :: unix print environment variable 
Shell :: git delete remote branch error: unable to delete remote ref does not exist 
Shell :: ubuntu epub reader 
Shell :: uninstall ruby ubuntu 
Shell :: alternative to installonair 
Shell :: xcode path mac 
Shell :: How to restart a service with systemctl command 
Shell :: how to install haxeflixel 
Shell :: count occurrences of word in file linux 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =