Git Basics

What Is Git?

Git is a version control tool. It tracks every change you make to your files so you can go back to any previous version.

How your work reaches GitHub: stage, commit, then push

Local vs Remote

Your project lives in two places:

flowchart LR
    A["Your Computer\n(local repo)"] -- "push" --> B["GitHub\n(remote repo)"]
    B -- "pull" --> A
    C["Your edits"] -- "commit" --> A
  • Commit saves a snapshot of your changes locally
  • Push uploads your commits to GitHub
  • Pull downloads the latest changes from GitHub to your computer

Changes you make on your computer are not on GitHub until you push. If you only commit but forget to push, your work is saved locally but not backed up online.

Find the Source Control Tab

In VS Code, look at the left sidebar. Click the icon that looks like a branching line (third icon from the top). This is the Source Control tab. It shows every file you have changed since your last commit.

How to Commit

A commit is a snapshot of your work. Think of it like saving a checkpoint in a video game.

  1. Make sure your files are saved (Ctrl+S on Windows, Cmd+S on Mac)
  2. Open the Source Control tab
  3. You will see your changed files listed under "Changes"
  4. Click the + icon next to each file to stage it (this tells Git "include this file in my snapshot")
  5. Type a short message in the text box at the top that describes what you changed
  6. Click the Commit button

How to Push

Pushing sends your commits to GitHub so they are saved online.

  1. After you commit, click the Sync Changes button that appears in the Source Control tab
  2. This uploads your commits to GitHub

If you see a Push button instead of Sync, click that. Both do the same thing.

Commit and Push Often

Do not wait until your project is "done" to commit. Commit after each meaningful change -- finishing a section, fixing a bug, adding a new file. Then push right away.

Why this matters:

  • If your computer crashes or you accidentally delete something, your latest work is safe on GitHub.
  • Small commits are easier to understand when you look back at your history.
  • Your instructor can see your progress. A repo with one giant commit at the deadline looks very different from a repo with steady work over the week.

A good rhythm: every time you save and your code works, commit and push.

How to Pull

Pulling downloads the latest changes from GitHub to your computer. This matters when you work from multiple computers or when a collaborator makes changes.

  1. Open the Source Control tab
  2. Click the Sync Changes button
  3. This pulls any new changes down and pushes your local commits up

File and Repo Naming Rules

Use these rules for all file names, folder names, and repo names:

  • All lowercase: about-me.html, not About-Me.html
  • No spaces: use hyphens instead. my-project, not my project
  • No special characters: stick to letters, numbers, and hyphens
Bad Good
About Me.html about-me.html
My Project my-project
Final_Project (1).html final-project.html
Homework 3/ homework-3/

Why this matters: spaces and uppercase letters cause problems with URLs, terminal commands, and deployment. Following this rule now saves you debugging later.

Repo Settings on GitHub

Rename a repo: Go to the repo on github.com, click Settings, scroll to "Repository name," type the new name, and click Rename. If you rename your username.github.io repo, your site URL will break.

Delete a repo: Settings, scroll all the way to the bottom to "Danger Zone," click Delete this repository. This cannot be undone.

Change visibility (private to public): Settings, scroll to "Danger Zone," click Change visibility. Your username.github.io repo and oim3690 repo should both be public.

Rename a file: In VS Code, right-click the file in the Explorer sidebar and select Rename. Commit and push after renaming. On github.com, navigate to the file, click the pencil icon, and change the file name at the top.

Delete a file: In VS Code, right-click the file and select Delete. The deletion shows up in Source Control as a change. Commit and push to remove it from GitHub too.

Common Issues

"Nothing to commit" Your files are not saved. Press Ctrl+S (Windows) or Cmd+S (Mac) to save, then check the Source Control tab again.

"Please configure user.name and user.email" Git does not know who you are yet. This is a one-time setup. Open the VS Code terminal (Ctrl+`) and run these two commands with your own name and email:

git config --global user.name "Your Name"
git config --global user.email "your-email@example.com"

Then try your commit again.

Merge conflicts This happens when two versions of the same file have conflicting changes. Do not try to fix this on your own. Ask the instructor or a TA for help.

Commit Message Tips

Write a short message that says what you changed. Start with a verb.

Good Bad
Add contact form update
Fix broken image link stuff
Style navigation bar changes

A good commit message helps you find specific changes later when you look back at your project history.

Your Turn

  1. Open one of your project files in VS Code and make a small change (add a comment, fix a typo)
  2. Save the file
  3. Open the Source Control tab, stage the change, and write a commit message
  4. Commit, then push to GitHub

If you see your change on GitHub, you are all set.

Last updated: Sunday, 6/28/2026