Setup Guide (Part two)
Install the very nice to have tools for promptfoo evaluations.
Git
Following the git / source control management guide for VSCode, do:
Download and install:
- Go to https://git-scm.com/download/win
- Download and run the installer
- Use default settings
Configure Git (in terminal):
Git needs to know who you are. In the VSCode terminal:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
Verify installation:
git --version
Verify VSCode Detects Git
- Open VSCode
- Click the Source Control icon (branch symbol) on the left sidebar
- You should see “Git” at the top
- If you see “Git not found”, restart VSCode
Test Git Integration
- Create a new file in VSCode (e.g.,
test.txt) - Add some text and save
- Open Source Control panel (
Ctrl+Shift+G) - You should see
test.txtunder “Untracked Files”
This confirms Git is working in VSCode!
Recommended: Complete the full Session 5: Git Setup guide to learn Git workflow and practice with VSCode integration.