Getting Started
Create an Account
- Go to github.com and click Sign up
- Enter your email, password, and username
- Verify your email address
Install Git
# macOS
brew install git
# Ubuntu / Debian
sudo apt install git
# Windows - download from https://git-scm.com
Configure Git
git config --global user.name "Your Name"
git config --global user.email "your@email.com"
Create Your First Repository
- Click the + icon in the top-right corner and select New repository
- Enter a repository name
- Choose public or private
- Click Create repository
Then clone it locally:
git clone https://github.com/your-username/your-repo.git
cd your-repo
You can also create a repository directly from the terminal using the GitHub CLI: gh repo create.
Added gif for testing:
