Git First Setup

1. Download Git and install (Windows)

Click Here


2. Download GitHub CLI and install (Windows)

Click Here


3. Login to GitHub

Click Here

gh auth login


4 Clone a project from GitHub

Click Here
This is an example. Please change the URL to the project you want to clone.

git clone https://github.com/AutoLifeRobot/test-git-workflow.git


5. Download VS Code and Install

Click Here


6. Install GitLens addon in VS Code

Click Here
Or you can search in the Extensions tab in VS Code


7. Configure name and email

git config --global user.name "your name"
git config --global user.email "your email"