What is GitHub?
GitHub is a platform where you store your code and share it with others. Vercel automatically deploys your project directly from your GitHub code.
Account Creation
- Go to github.com
- Click the "Sign up" button
- Enter your email, password, and choose a username
- Verify your email address
Connect Git to GitHub
After creating your account, configure Git on your local machine:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"