AI Coding Essentials

Homework 1

Version control with git, Progress tracker, DevTools Console and Bookmarklets, and Build Your Own

0 of 5 completed

What is Git?

Git tracks changes to your code over time. GitHub hosts your code online.

Common Commands

git init          # Start a repository
git add .         # Stage changes
git commit -m "message"  # Save changes
git push          # Upload to GitHub
git pull          # Download from GitHub