CAIL Spotlight Workshop #1
Foundations: Coding with Generative AI
Spring 2026
Spring 2026
pwd
Print your current location
mkdir my-project
Make a new folder
cd my-project
Move into a folder
cd ..
Go up one level
touch index.html
Create a new file
ls
List what's in the folder
mv index.html my-project
Move a file into a folder
cd my-project
Move into a folder (again)
git init
Initialize a repo
git add .
Stage your changes
git commit -m "first commit"
Save a snapshot
git status
Check what changed
git log --oneline
View history
git push origin main
Push to GitHub
Getting Gemini CLI running on your machine
gemini in your terminal to start authentication