Install
npx skillscat add julianobarbosa/claude-code-skills/skills-merge-and-cleanup-skill Install via the SkillsCat registry.
SKILL.md
.claude/skills/merge-and-cleanup/SKILL.md
Merge Feature Branch to Main
- Ensure all changes are committed on current branch
- Switch to main:
git checkout main && git pull - Merge feature branch:
git merge --ff-only <branch>(if fails, use regular merge and resolve conflicts) - Push main:
git push origin main - Delete feature branch:
git branch -d <branch> && git push origin --delete <branch> - Report final status