Github - Account Creation

What is GitHub?

GitHub is an online platform where developers can store code, track changes, and collaborate.
It builds on top of Git (version control) and makes teamwork much easier.

Think of it as:
“A home for your projects - where code, history, and collaboration live together.”

Git & Github - Teamwork puzzle.png


Why GitHub?

GitHub is the world’s most popular platform for version control and collaboration.

  • Industry standard → most companies and open-source projects use it.
  • Collaboration → easy to share code, review changes, and work in teams.
  • History & backup → every version of your project is saved.
  • Integrations → connects with tools like Docker, CI/CD, and cloud providers.
  • Career value → almost every developer is expected to know GitHub basics.

Git & Github - Industry Standard.png


Step by Step - Guide

Step 1 - Create an Account

Example
  1. Go to https://github.com
  2. Click Sign up
  3. Choose a username, email, and password
  4. Verify your email

Step 2 - Secure Your Account

Security

GitHub now requires Personal Access Tokens instead of passwords when pushing code.
Don’t worry.. we’ll cover how to create and use tokens later.


Step 3 - Explore GitHub

  • Create a simple repo from the web interface.
  • Add a README (your project’s introduction).
  • Browse around Issues, Pull Requests, and the Project tab.

Why this step matters

Creating a GitHub account is your entry ticket into modern software development.
It’s the first step towards:

  • Contributing to real-world projects
  • Building a professional portfolio
  • Learning how developers collaborate globally
Success

Once you have a GitHub account, you’re officially part of the developer world!


Now what?

Next step: Install Git locally and connect your first project to GitHub.


GitHub - Documentation


Finished

Back to Overview: Developer Fundamentals