git-essentials

Installation
SKILL.md

Git Essentials

Essential Git commands for version control and collaboration.

Initial Setup

# Configure user
git config --global user.name "Your Name"
git config --global user.email "your@email.com"

# Initialize repository
git init

# Clone repository
git clone https://github.com/user/repo.git
git clone https://github.com/user/repo.git custom-name
Installs
8
GitHub Stars
19
First Seen
May 15, 2026
git-essentials — bighardperson/computer-science-skills-collection