Version Control with Git
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.
Workflow
Assess Repository State: Run 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.
Stage and Commit Changes: Group related changes into atomic commits. Write commit messages that start with a concise summary line (50 characters or fewer), followed by a blank line and an explanatory body when the change is non-trivial. Follow the project's commit convention (Conventional Commits, Angular style, etc.) if one exists.
Branch Management: Create feature, bugfix, or release branches from the appropriate base. Use a consistent naming convention such as feat/short-description, fix/issue-123, or release/1.2.0. Delete stale branches after merging to keep the branch list clean.
Synchronize with Remote: Fetch and pull regularly to stay up to date. Push feature branches with the -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.
Resolve Conflicts: When conflicts arise, inspect the conflicting files, understand both sides of the change, choose the correct resolution (or combine both), mark the file as resolved with git add, and complete the merge or rebase. Always run tests after resolution to confirm correctness.
Automate with Hooks and CI: Set up Git hooks (pre-commit for linting/formatting, commit-msg for message validation, pre-push for test runs) and ensure .gitignore covers build artifacts, environment files, and OS metadata. Integrate with CI pipelines to enforce quality gates on every push.
Supported Technologies
- Git (CLI, libgit2)
- Platforms: GitHub, GitLab, Bitbucket, Azure DevOps
- CLI tools:
gh (GitHub CLI), glab (GitLab CLI)
- Hook frameworks: Husky, pre-commit, Lefthook
- Branching models: GitFlow, GitHub Flow, trunk-based development
Usage
Ask the agent to perform any Git operation by describing what you need in plain language. Examples:
- "Create a feature branch for the new auth module and commit my staged changes."
- "Resolve the merge conflicts in
src/config.ts and complete the merge."
- "Set up a
.gitignore for a Python project with a virtual environment."
- "Rebase my branch onto main and force-push the cleaned-up history."
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.
Examples
Example 1 — Resolving a Merge Conflict
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"
Example 2 — Setting Up a Branching Strategy (GitHub Flow)
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.
Best Practices
- Write atomic commits. Each commit should represent one logical change that compiles and passes tests on its own. This makes
bisect, revert, and cherry-pick reliable.
- Never commit secrets. Add
.env, credentials files, and private keys to .gitignore before the first commit. Use tools like git-secrets or trufflehog to scan for accidental leaks.
- Rebase feature branches, merge to main. Rebasing keeps feature branch history linear and easy to review; merging into main preserves the merge commit as a clear integration point.
- Use
--force-with-lease instead of --force. It prevents overwriting teammates' work by failing if the remote has commits you haven't fetched.
- Tag releases. Use annotated tags (
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.
- Keep
.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.
Edge Cases
- Detached HEAD state: If the user has checked out a tag or specific commit, warn them before committing. Suggest creating a branch first to avoid orphaned commits.
- Large binary files: Git is not designed for large binaries. Recommend Git LFS for assets like images, models, or videos, and add the relevant LFS tracking rules.
- Shallow clones: Operations like
blame, log, and bisect may fail on shallow clones (--depth 1). Run git fetch --unshallow before performing history-dependent operations.
- Submodules and monorepos: When the project uses submodules, ensure
git submodule update --init --recursive is part of the setup instructions. For monorepos, respect per-package change boundaries during commits.
- Diverged branches after force-push: If a teammate force-pushed a shared branch, advise
git fetch followed by git reset --hard origin/<branch> only after confirming no local work will be lost. Coordinate with the team first.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: version-control-23description: Manage Git repositories and collaborative workflows — branching strategies, commit hygiene, conflict resolution, pull requests, hooks, and .gitignore management. Use when this capability is needed.4---56# Version Control with Git78This 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.910## Workflow11121. **Assess Repository State**: Run `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.13142. **Stage and Commit Changes**: Group related changes into atomic commits. Write commit messages that start with a concise summary line (50 characters or fewer), followed by a blank line and an explanatory body when the change is non-trivial. Follow the project's commit convention (Conventional Commits, Angular style, etc.) if one exists.15163. **Branch Management**: Create feature, bugfix, or release branches from the appropriate base. Use a consistent naming convention such as `feat/short-description`, `fix/issue-123`, or `release/1.2.0`. Delete stale branches after merging to keep the branch list clean.17184. **Synchronize with Remote**: Fetch and pull regularly to stay up to date. Push feature branches with the `-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.19205. **Resolve Conflicts**: When conflicts arise, inspect the conflicting files, understand both sides of the change, choose the correct resolution (or combine both), mark the file as resolved with `git add`, and complete the merge or rebase. Always run tests after resolution to confirm correctness.21226. **Automate with Hooks and CI**: Set up Git hooks (pre-commit for linting/formatting, commit-msg for message validation, pre-push for test runs) and ensure `.gitignore` covers build artifacts, environment files, and OS metadata. Integrate with CI pipelines to enforce quality gates on every push.2324## Supported Technologies2526- **Git** (CLI, libgit2)27- **Platforms**: GitHub, GitLab, Bitbucket, Azure DevOps28- **CLI tools**: `gh` (GitHub CLI), `glab` (GitLab CLI)29- **Hook frameworks**: Husky, pre-commit, Lefthook30- **Branching models**: GitFlow, GitHub Flow, trunk-based development3132## Usage3334Ask the agent to perform any Git operation by describing what you need in plain language. Examples:3536- "Create a feature branch for the new auth module and commit my staged changes."37- "Resolve the merge conflicts in `src/config.ts` and complete the merge."38- "Set up a `.gitignore` for a Python project with a virtual environment."39- "Rebase my branch onto main and force-push the cleaned-up history."4041The 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.4243## Examples4445### Example 1 — Resolving a Merge Conflict4647**Scenario**: You are on branch `feat/user-profile` and want to merge `main`, but there is a conflict in `src/utils/format.ts`.4849```bash50# Attempt the merge51git merge main52# Output: CONFLICT (content): Merge conflict in src/utils/format.ts5354# Inspect the conflict markers55git diff --name-only --diff-filter=U56# src/utils/format.ts57```5859The conflicting file contains:60```typescript61function formatDate(date: Date): string {62<<<<<<< HEAD63 return date.toLocaleDateString("en-US", { year: "numeric", month: "short", day: "numeric" });64=======65 return new Intl.DateTimeFormat("en-US", { dateStyle: "medium" }).format(date);66>>>>>>> main67}68```6970**Resolution**: The `main` version uses the modern `Intl.DateTimeFormat` API, which is preferred. Accept that version, remove the conflict markers, and complete the merge:7172```typescript73function formatDate(date: Date): string {74 return new Intl.DateTimeFormat("en-US", { dateStyle: "medium" }).format(date);75}76```7778```bash79# Mark resolved and commit80git add src/utils/format.ts81git commit -m "merge main into feat/user-profile, adopt Intl.DateTimeFormat"82```8384### Example 2 — Setting Up a Branching Strategy (GitHub Flow)8586**Scenario**: A small team wants a lightweight branching model for continuous deployment.8788```bash89# Ensure main is the default and protected branch90gh repo edit --default-branch main9192# Create a feature branch from main93git checkout main && git pull94git checkout -b feat/dark-mode9596# ... develop and commit ...97git add .98git commit -m "feat: add dark-mode toggle to settings page99100Reads user preference from localStorage and applies the101'dark' class to <html>. Falls back to OS preference via102prefers-color-scheme media query."103104# Push and open a pull request105git push -u origin feat/dark-mode106gh pr create \107 --title "feat: add dark-mode toggle" \108 --body "## Summary109- Adds a toggle in Settings that persists to localStorage110- Respects OS-level dark mode preference as default111112## Test plan113- [ ] Toggle switches theme immediately114- [ ] Preference persists across page reloads115- [ ] Falls back to OS preference for new users"116117# After review and CI pass, merge via GitHub118gh pr merge --squash --delete-branch119```120121**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.122123## Best Practices124125- **Write atomic commits.** Each commit should represent one logical change that compiles and passes tests on its own. This makes `bisect`, `revert`, and `cherry-pick` reliable.126- **Never commit secrets.** Add `.env`, credentials files, and private keys to `.gitignore` before the first commit. Use tools like `git-secrets` or `trufflehog` to scan for accidental leaks.127- **Rebase feature branches, merge to main.** Rebasing keeps feature branch history linear and easy to review; merging into main preserves the merge commit as a clear integration point.128- **Use `--force-with-lease` instead of `--force`.** It prevents overwriting teammates' work by failing if the remote has commits you haven't fetched.129- **Tag releases.** Use annotated tags (`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.130- **Keep `.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.131132## Edge Cases133134- **Detached HEAD state**: If the user has checked out a tag or specific commit, warn them before committing. Suggest creating a branch first to avoid orphaned commits.135- **Large binary files**: Git is not designed for large binaries. Recommend Git LFS for assets like images, models, or videos, and add the relevant LFS tracking rules.136- **Shallow clones**: Operations like `blame`, `log`, and `bisect` may fail on shallow clones (`--depth 1`). Run `git fetch --unshallow` before performing history-dependent operations.137- **Submodules and monorepos**: When the project uses submodules, ensure `git submodule update --init --recursive` is part of the setup instructions. For monorepos, respect per-package change boundaries during commits.138- **Diverged branches after force-push**: If a teammate force-pushed a shared branch, advise `git fetch` followed by `git reset --hard origin/<branch>` only after confirming no local work will be lost. Coordinate with the team first.139140---141> Converted and distributed by [TomeVault](https://tomevault.io/claim/seb1n) — claim your Tome and manage your conversions.142<!-- tomevault:4.0:skill_md:2026-04-11 -->