Getting Started with GitHub
Welcome! This guide will walk you through your first steps in using GitHub for version control and collaboration.
1. Sign Up for GitHub
Go to GitHub and create a free account.
Tip: Use the same email address you’ll set up in your local Git configuration to keep everything in sync.
2. Create a New Repository
Once you're logged in, click the New button to start a new repository.
Fill in the repository details such as:
- Name
- Description
- Visibility (Public or Private)
Then, click Create repository.
3. Understanding Remote Repositories
A remote repository is an online version of your project, stored on a hosting service like GitHub.
It makes it easy to:
- Back up your work
- Share your code with others
- Collaborate on projects anywhere