seb1n/version-control
Manage Git repositories and collaborative workflows — branching strategies, commit hygiene, conflict resolution, pull requests, hooks, and .gitignore management.
npx skills add https://github.com/seb1n/awesome-ai-agent-skills --skill version-control
This skill equips an AI agent to perform the full spectrum of Git-based version control tasks, from initializing a repository and crafting atomic commits to orchestrating branching strategies, resolving merge conflicts, and configuring automation with hooks. It covers both everyday workflows and advanced operations needed for professional team collaboration.
git status, git log --oneline -10, and git branch -a to understand the current branch, uncommitted changes, recent history, and available remotes. This context determines which operations are safe to perform.feat/short-description, fix/issue-123, or release/1.2.0. Delete stale branches after merging to keep the branch list clean.-u flag on first push. Before merging, rebase or merge the base branch into the feature branch to resolve conflicts early in an isolated context.git add, and complete the merge or rebase. Always run tests after resolution to confirm correctness..gitignore covers build artifacts, environment files, and OS metadata. Integrate with CI pipelines to enforce quality gates on every push.gh (GitHub CLI), glab (GitLab CLI)Ask the agent to perform any Git operation by describing what you need in plain language. Examples:
src/config.ts and complete the merge.".gitignore for a Python project with a virtual environment."The agent will verify the repository state before every destructive operation and confirm with you before running commands like reset --hard, push --force, or rebase that rewrite history.
Scenario: You are on branch feat/user-profile and want to merge main, but there is a conflict in src/utils/format.ts.
# Attempt the merge
git merge main
# Output: CONFLICT (content): Merge conflict in src/utils/format.ts
# Inspect the conflict markers
git diff --name-only --diff-filter=U
# src/utils/format.ts
The conflicting file contains:
function formatDate(date: Date): string {
<<<<<<< HEAD
return date.toLocaleDateString("en-US", { year: "numeric", month: "short", day: "numeric" });
=======
return new Intl.DateTimeFormat("en-US", { dateStyle: "medium" }).format(date);
>>>>>>> main
}
Resolution: The main version uses the modern Intl.DateTimeFormat API, which is preferred. Accept that version, remove the conflict markers, and complete the merge:
function formatDate(date: Date): string {
return new Intl.DateTimeFormat("en-US", { dateStyle: "medium" }).format(date);
}
# Mark resolved and commit
git add src/utils/format.ts
git commit -m "merge main into feat/user-profile, adopt Intl.DateTimeFormat"
Scenario: A small team wants a lightweight branching model for continuous deployment.
# Ensure main is the default and protected branch
gh repo edit --default-branch main
# Create a feature branch from main
git checkout main && git pull
git checkout -b feat/dark-mode
# ... develop and commit ...
git add .
git commit -m "feat: add dark-mode toggle to settings page
Reads user preference from localStorage and applies the
'dark' class to <html>. Falls back to OS preference via
prefers-color-scheme media query."
# Push and open a pull request
git push -u origin feat/dark-mode
gh pr create \
--title "feat: add dark-mode toggle" \
--body "## Summary
- Adds a toggle in Settings that persists to localStorage
- Respects OS-level dark mode preference as default
## Test plan
- [ ] Toggle switches theme immediately
- [ ] Preference persists across page reloads
- [ ] Falls back to OS preference for new users"
# After review and CI pass, merge via GitHub
gh pr merge --squash --delete-branch
Key points: main is always deployable, every change goes through a PR with review and CI, and branches are deleted after merge to avoid clutter.
bisect, revert, and cherry-pick reliable..env, credentials files, and private keys to .gitignore before the first commit. Use tools like git-secrets or trufflehog to scan for accidental leaks.--force-with-lease instead of --force. It prevents overwriting teammates' work by failing if the remote has commits you haven't fetched.git tag -a v1.2.0 -m "Release 1.2.0") for every production release so you can always trace deployed code back to a specific commit..gitignore comprehensive. Start from a template (github/gitignore) for your language/framework and add project-specific entries for build output, editor config, and local environment files.blame, log, and bisect may fail on shallow clones (--depth 1). Run git fetch --unshallow before performing history-dependent operations.git submodule update --init --recursive is part of the setup instructions. For monorepos, respect per-package change boundaries during commits.git fetch followed by git reset --hard origin/<branch> only after confirming no local work will be lost. Coordinate with the team first.Take seb1n/version-control from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.