git-operations-rules
Installation
SKILL.md
Git Operations Rules
Rule (CRITICAL)
These rules MUST ALWAYS be followed when performing git operations.
git -C
Do not use git -C <path>. Always cd to the repository directory first, or use absolute paths within the current working directory.
git unstage
Use git unstage to reset the staging area. Do not pass any options.
git unstage
git undo
Related skills