Tools · Lesson 71 of 76
GitHub setup
To start using GitHub:
- Create a free account at github.com.
- Install Git on your machine (search "install git" for your platform), then tell Git who you are — this name appears on your commits:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
- On GitHub, click New repository, give it a name, and create it. GitHub then shows you the exact commands to connect your local project to it.
That's the one-time setup. After this, sharing a project is just a few commands, covered next.
You’re reading for free. Sign in to keep your progress and earn a certificate when you finish.Sign in to keep my progress →