Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

configure your git username/email

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

get git config username and email

git config --global user.email
git config --global user.name
Comment

update git config username and email

git config --global --edit
Comment

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

How to change git username and email and general most common git configuration

$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com

More git configartion info:
https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration#_code_commit_template_code
Comment

PREVIOUS NEXT
Code Example
Shell :: install vlc on fedora 
Shell :: react bootstrap 
Shell :: mkdir create all subdirectories 
Shell :: install kubernetes linux 
Shell :: busybox 
Shell :: display settings ubuntu 20.04 in right side 
Shell :: git merge tag to branch and squash commits 
Shell :: github pages push 
Shell :: how to clone all git repositories 
Shell :: sudo swapoff 
Shell :: microphone auto adjusting ubuntu 
Shell :: script for restart redis service automatically 
Shell :: add colab to github 
Shell :: git stash save name 
Shell :: ionic 
Shell :: helm install with values file 
Shell :: how to install tar.xz files on ubuntu 
Shell :: imagemagick compare pdf 
Shell :: sngrep printed lines correctly 
Shell :: nlog linux folder 
Shell :: mv command in linux to rename 
Shell :: unable to start test validator. check .anchor/test-ledger/test-ledger-log.txt for errors. 
Shell :: edit user data 
Shell :: bash add text to second line 
Shell :: linux microcore static ip 
Shell :: Error: path "" is not a descendant of mount point root "" and cannot be exposed from 
Shell :: The application “SpringToolSuite4” can’t be opened. 
Shell :: alter package body compile 
Shell :: bind folder linux 
Shell :: install new kernel ubuntu 20.04 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =