Quick intro — no jargon. Ready for commands? Go to the CLI.
Google Drive for code — with Git tracking every version, so you can rewind and collaborate safely.
Create your account and install the tools you'll need on your computer.
Go to github.com and sign up. Pick a username you're happy to show off — it becomes part of every project URL.
https://github.com/your-username
Git is the tool that tracks your code. Download it from git-scm.com, then open a terminal.
git --version → git version 2.45.0
Set your name and email so every commit is signed by you.
git config --global user.name "Your Name" git config --global user.email "you@example.com"
Turn any folder into a Git project and save your first snapshot.
Inside a project folder, run `git init`. Git will start tracking every file you add.
git init
Stage your files, then commit with a short message that describes what you did.
git add . git commit -m "first commit"