Why Students Need GitHub

Step 1 โ€” Create an Account

Sign up at github.com with your school email to qualify for the Student Pack.

Step 2 โ€” Install Git

# macOS
brew install git
# Windows: download from git-scm.com

Step 3 โ€” Create a Repository

Click "New repository" on GitHub. Leave it public if you want it visible on your profile.

Step 4 โ€” Push From the Command Line

git init
git add .
git commit -m "initial commit"
git branch -M main
git remote add origin https://github.com/YOU/repo.git
git push -u origin main

Step 5 โ€” Write a README

Your README is the landing page. Explain what the project does, how to run it, and include a screenshot.

Portfolio Tips

Practise this on PyForm โ€” free

PyForm runs Python in your browser with an AI tutor trained for HKDSE. No install, no credit card.

Open PyForm โ†’