Documentation
README
GitHub Repository Management
Create, clone, fork, configure, and manage GitHub repositories.
Prerequisites
- Authenticated with GitHub (see
github-authskill)
1. Clone
# HTTPS
git clone https://github.com/owner/repo.git
# SSH
git clone git@github.com:owner/repo.git
# With gh (auto-forks if you don't have push access)
gh repo clone owner/repo
# Clone + set up remote for fork
gh repo clone owner/repo -- --origin upstream
git remote add origin https://github.com/$GH_USER/repo.git
2. Create New Repository
This is the opening of the README. Read the full README on GitHub.