Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 407 Bytes

File metadata and controls

17 lines (9 loc) · 407 Bytes

Git Configuration

After installing git, you need to configure it. This is a one-time setup.

Run the following commands from the terminal:

IMPORTANT: Substitute your actual name and a non-Stanford email for the name and email configurations.

git config --global init.defaultBranch main

git config --global user.name "Your Name"

git config --global user.email "your_email@example.com"