Learn Git by making a simple visual change. A beginner friendly repo for designers.
This repo is designed to be used without the terminal. You will design in your editor and manage Git in GitHub Desktop.
On this GitHub page:
- Click Code
- Select Open with GitHub Desktop
- Choose a location on your computer
- Click Clone
You now have a local copy of the project.
In GitHub Desktop:
- Click Open in Cursor (or VS Code)
You should now see the files:
index.htmlstyles.cssREADME.md
Never work directly on main.
In GitHub Desktop:
- Click Current Branch
- Click New Branch
- Name it after what you are doing
- Example:
center-card
- Example:
- Click Create Branch
This is your safe space to experiment.
In your editor:
- Open
styles.css - Make the required visual change
- Save the file
GitHub Desktop will automatically detect the changes.
In GitHub Desktop:
- Write a short summary
- Example:
Center card on screen
- Example:
- Click Commit to center-card
This saves a checkpoint of your work.
Still in GitHub Desktop:
- Click Push origin
This shares your work with GitHub so others can see it.
After pushing, GitHub Desktop will prompt you to:
- Create Pull Request
Click it and open the PR on GitHub.
This is the review step.
This is the full Git loop you will use every time:
- Open with GitHub Desktop
- Clone
- New branch
- Make visual change
- Commit
- Push
- Open Pull Request
If you can do this, you can work professionally with Git.