https://www.loom.com/share/a17e5ba4114c46d4ac7c0278d3fede36?sid=1135a066-07ff-431e-8cc0-790989dfdccb

Use your terminal in Cursor using the following steps to get set up with Github!

Do the following steps only after creating a Github account!


1 · Install Git (if you haven’t already)

	1.	Open Terminal in Cursor
	2.	Type git --version → Enter
	•	If you see a version number → jump to Step 2.
	•	If you see a pop-up that says “Xcode Command Line Tools are required,” click Install → wait ~2 min → done.

2 · Sign In to Github

1. Press ⌘+Shift+P
2. Type "GitHub: Sign in" then press enter
3. Browser tab pops up → Authorize Cursor

3 · Pushing your first commit to Github

A. New project (inside your project folder)

git init

git add .

git commit -m "Initial commit"

git branch -M main

git remote add origin **URL OF YOUR GITHUB REPO**

git push -u origin main

If you run into problems…

Ask Agent in Cursor to help!