Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 412 Bytes

git.md

File metadata and controls

17 lines (11 loc) · 412 Bytes

Git

Set global username/email configurations

Set your username git config --global user.name "FIRST_NAME LAST_NAME"

Set your email git config --global user.email "MY_NAME@example.com"

Set repository-specific username/email configuration

Set your username git config user.name "FIRST_NAME LAST_NAME"

Set your email git config user.email "MY_NAME@example.com"