Create your GitHub account
GitHub is free and takes 5 minutes to set up. You’ll need it to:- Back up your code
- Share your projects
- Download AI tools and examples
Step 1: Sign up
- Go to github.com
- Click “Sign up”
- Enter:
- Username: Pick something professional (employers will see this)
- Email: Use one you check regularly
- Password: Make it strong
Step 2: Verify your account
GitHub will send you an email. Click the link to verify.Step 3: Set up your profile
Once logged in:- Click your profile picture (top right) > “Your profile”
- Click “Edit profile”
- Add:
- Name: Your real name
- Image: Add a profile picture
- Bio: “Learning Python for AI development” (or similar)
Step 4: Configure Git locally
Tell Git who you are (one-time setup):Step 5: Choose your authentication method
There are three ways to authenticate with GitHub. Choose one:Recommended: We suggest using GitHub CLI for the easiest setup experience. It’s modern, simple, and handles authentication automatically.
- GitHub CLI (Recommended)
- HTTPS with Token
- SSH Keys
GitHub CLI (gh)
Modern approach using GitHub’s official tool:- Install GitHub CLI:
- Windows: Download from cli.github.com
- macOS:
brew install gh - Linux: See installation guide
- Authenticate:
- Follow the prompts:
- Choose GitHub.com
- Choose SSH (recommended) or HTTPS
- Authenticate with browser
What’s next?
Now let’s learn how to create your first repository and clone existing projects.Clone and create
Start using GitHub