Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git user.name user.email

git config --global user.name "Your Name"
git config --global user.email "youremail@yourdomain.com"
Comment

add git user and email

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

get git username and email

git config user.name
git config user.email
Comment

configure your git username/email

git config --global user.name "FIRST_NAME LAST_NAME"
git config --global user.email "YourEmail@example.com"
Comment

git user email

git config --global user.name "John Smith"
git config --global user.email "johnsmith@example.com"
Comment

set git user name and user email

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

set github username and mail

# Global configuration
git config --global user.name "FIRST_NAME LAST_NAME"
git config --global user.email "MY_NAME@example.comgit config user.name "FIRST_NAME LAST_NAME"

# Repository specific
git config user.email "MY_NAME@example.com"
git config user.name "FIRST_NAME LAST_NAME"

# Check your configuration
cat .git/config"

Comment

GIT: User name & Mail address

git config --global user.name "<name>" && 
git config --global user.email "<email>"
Comment

Set Up Your Username and Email in Git Command

git config --global user.name "Tara Routray"
Comment

PREVIOUS NEXT
Code Example
Shell :: upgrade pillow version 
Shell :: brew uninstall mysql 
Shell :: purge from terminal 
Shell :: apache check config 
Shell :: install ext-dom linux 
Shell :: how to open xampp control panel in ubuntu 
Shell :: stop a process running on a port ubuntu 
Shell :: how can I find perticular extension in ubuntu? 
Shell :: install nvm with brew 
Shell :: install grunt mac 
Shell :: ubuntu tweak 
Shell :: pip check for updates 
Shell :: mac terminal find process by port 
Shell :: spigot start.bat 
Shell :: mac pip command not found 
Shell :: how to check which process is using more memory in linux 
Shell :: Please install all available updates for your release before upgrading. 
Shell :: install apollo 
Shell :: apache disable autostart linux 
Shell :: how to see the remote url in git 
Shell :: command not found: lvim 
Shell :: run requirements.txt conda 
Shell :: install telnet mac 
Shell :: upgrade git on centos 7 
Shell :: how to unistall and reinstall latest composer in mac 
Shell :: install node js ubuntu 
Shell :: pip install pyscopg2 
Shell :: revert local commit git bash 
Shell :: rails how to check environment 
Shell :: (‘08001’, ‘[08001] [Microsoft][ODBC Driver 17 for SQL Server]Client unable to establish connection (0) (SQLDriverConnect)’) 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =