Git Workflows
Installation
SKILL.md
Git Workflows
A comprehensive suite of git workflow skills for local repository operations.
Input Sanitization
- Branch names: alphanumeric, hyphens, underscores, forward slashes, and dots only — reject
.., shell metacharacters, or null bytes - Remote names: alphanumeric and hyphens only
- File paths for stash/diff: reject
..traversal, null bytes, and shell metacharacters
Available Skills
Sync & Remote Operations
| Skill | Purpose | Invoke |
|---|---|---|
/git-sync |
Fetch and show remote changes | git sync, what's new upstream |
/git-pull |
Pull with merge/rebase strategy | git pull, get latest |
/git-push |
Push with upstream handling | git push, push changes |