tinywaves
← Back to Articles

First-Time Git Setup

Lyle Zheng(Updated: )1 min read
Technology#Git

#First-Time Git Setup

When setting up Git for the first time on a new machine, there are a few essential configurations to ensure everything runs smoothly. Below are the commands I use to configure Git globally:

git config --global user.name "tinywaves"
git config --global user.email dhzhme@gmail.com
git config --global init.defaultBranch main

#Commit with gpg

Commit with gpg