Skip to content
This repository was archived by the owner on Aug 2, 2023. It is now read-only.

Latest commit

 

History

History
18 lines (13 loc) · 735 Bytes

File metadata and controls

18 lines (13 loc) · 735 Bytes

Configure Git

Like artists, programmers sign their work. Let's configure Git to sign your commits with your name and email address. in Make sure you sign up for an account at Github here.

WARNING: Before running the following commands, replace YOUR FULL NAME and YOUR EMAIL ADDRESS with the name and email from your GitHub account.

git config --global user.name 'YOUR FULL NAME'
git config --global user.email 'YOUR EMAIL ADDRESS'

The terminal does not send success messages, in order to double check that you have successfully assigned your username and email:

git config --list