$ recombobulate _
~/recombobulate $ tip --list --tag="git"

// 62 tips tagged "git"

0
Tell Claude to Stash Your Work Before Trying a Risky Approach So You Can Revert Safely

Before asking Claude to try a big experimental change — a different architecture, an alternative algorithm, or a risky refactor — tell it to stash or branch first. If the experiment fails, you restore the stash and you're back where you started. Zero risk, maximum experimentation.

recombobulate @recombobulate · 1 month ago
175
Use /batch to Fan Out Massive Changesets Across Parallel Agents

Use /batch to fan out large-scale code changes across parallel worktree agents that work without conflicts.

recombobulate @recombobulate · 1 month ago
30
Ask Claude to Write Git Hooks That Enforce Your Team's Standards on Every Commit

Tell Claude to create git hooks that catch problems before they reach the repo — pre-commit hooks that run linters, check formatting, prevent debug code, validate commit message format, or block pushes to protected branches. Claude reads your project's tooling and writes hooks that match your actual setup.

recombobulate @recombobulate · 1 month ago
148
Ask Claude to Check Git Blame Before Refactoring to Understand Why the Code Exists

Before refactoring code that looks wrong or unnecessary, tell Claude to check git blame and the commit history to understand why it was written that way. What looks like a bug might be a deliberate workaround — and Claude can find the original commit message that explains the reasoning before you accidentally undo it.

recombobulate @recombobulate · 1 month ago
74
Ask Claude to Write a PR Description That Summarizes Your Branch Changes for Reviewers

When your branch is ready for review, tell Claude to read the diff against main and write a PR description — a clear summary of what changed, why, how to test it, and anything reviewers should pay attention to. Better descriptions lead to faster, more focused reviews.

recombobulate @recombobulate · 1 month ago
120
Ask Claude to Generate a Changelog from Your Git History

When it's time to cut a release, tell Claude to read your git log since the last tag and generate a human-readable changelog — organized by category (features, fixes, breaking changes), with clear descriptions that make sense to users, not just developers who read the commits.

recombobulate @recombobulate · 1 month ago
155
Ask Claude to Write Your Commit Message from the Staged Diff

Stop staring at a blank commit message wondering how to summarize your changes. Tell Claude to read the staged diff and write a clear, conventional commit message — it understands the intent behind the code changes and writes a message that future you will thank you for.

recombobulate @recombobulate · 1 month ago
159
Give Claude a GitHub Issue and Let It Read, Understand, and Implement the Fix

Paste a GitHub issue URL into Claude Code and it reads the issue title, description, labels, and comments — then explores your codebase to find the relevant code and implements the fix, complete with tests, matching your project's conventions.

recombobulate @recombobulate · 1 month ago
84
Ask Claude to Resolve Merge Conflicts by Understanding Both Sides of the Change

When you hit a merge conflict, don't guess which side to keep — ask Claude to read both versions, understand the intent behind each change, and produce the correct merge that preserves both developers' work without breaking the logic.

recombobulate @recombobulate · 1 month ago
91
Ask Claude to Explain a Confusing Diff So You Understand What Changed and Why

When a teammate's commit or a merge makes changes you don't understand, paste the diff into Claude and ask it to explain — not review for quality, but walk you through what each change does, why it matters, and how the pieces connect.

recombobulate @recombobulate · 1 month ago
119
Say "Review What We've Done" Before Committing to Catch Mistakes Early

Before committing changes from a long session, ask Claude to review everything it just did — it re-reads the diffs, checks for mistakes, forgotten edge cases, and inconsistencies it introduced, catching errors while the context is still fresh.

recombobulate @recombobulate · 1 month ago
129
Ask Claude to Create Git Aliases for Your Most Common Workflows

Tell Claude about the git commands you type most often — viewing logs a certain way, checking out PRs, cleaning up branches — and it creates git aliases that turn multi-flag commands into short, memorable shortcuts you'll actually use every day.

recombobulate @recombobulate · 1 month ago