← ClaudeAtlas

git-init-repolisted

Use when starting version control in a new project: initialise a Git repository with a sensible default branch and ignore file.
sarmakska/slipstream · ★ 1 · Code & Development · score 73
Install: claude install-skill sarmakska/slipstream
## Overview Initialise a Git repository with a sensible default branch and ignore file. ## Steps 1. Run `git init -b main`. 2. Add a `.gitignore` covering node_modules, build output and local env files. 3. Make an initial commit so later work has a clean baseline. ## Verify Run `git rev-parse --abbrev-ref HEAD` and confirm it prints `main`.