Back to Map

🔐 A. Account Creation

1

Navigate to GitHub

Go to GitHub.com and click Sign Up.

2

Follow the Prompts

Use your CSU-provided or personal email (you can add or change emails later if desired) and verify.

💡
Using your university email can give you access to GitHub Education benefits, including free GitHub Pro features!

🎨 B. Profile Customization

1

Access Settings

Click your avatar in the top-right corner and select Settings.

2

Personalize Your Profile

In the "Public Profile" section, enter your:

  • Name - Your real name or preferred display name
  • Bio - A brief description (e.g., "Engineering Student at University")
  • Photo - Upload a professional or fun avatar

C. [Optional] Exploration: The Special Profile README

🌟
This creates a unique content section on your main profile page. It's like having a personal billboard on GitHub!
1

Create a New Repository

See Section 5 (Creating a Repository) for detailed steps.

2

The Crucial Step!

Name the repository exactly the same as your GitHub username.

For example: If your username is , the repo name must be JaneDoe.

⚠️
The name must match exactly, including capitalization. This is the magic trick that makes it work!
3

Make it Public

Ensure the repository is Public.

4

Initialize with README

Check the box "Initialize this repository with a README".

5

Edit Your README

Once created, click the Pencil Icon (Edit) on the README.md file.

6

Add Some Markdown Magic

Use Markdown to add text:

  • Headings: Use # for large text
  • Images: Use the format <img src="image.png" alt="description" width="size">
  • Links: Use [Link Text](URL)
# Hi there! 🌈🌷 I'm fairy ✨<img src="icons/cutie wizard star1.png" alt="cutie wizard" width="80">

🎓 Engineering Student at Colorado State University
🚀 Learning [GitHub](https://github.com) and version control
💡 Passionate about sustainability & building cool things

## My Interests
- 🌈 Visual Art
- 🌏 AI World Models
- 💪 Powerlifting

Hi there! 🌈🌷 I'm fairy ✨wizard

🎓 Engineering Student at Colorado State University
🚀 Learning GitHub and version control
💡 Passionate about sustainability & building cool things

My Interests

  • 🌈 Visual Art
  • 🌏 AI World Models
  • 💪 Powerlifting
7

Save Your Work

Scroll down to "Commit changes" to save.

✨ Try It Now!

Create your profile repository and add a single sentence or emoji to the README. Navigate to your main profile page to see it appear!

Back to Map