install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/5t111111/git-operation" ~/.claude/skills/aiskillstore-marketplace-git-operation && rm -rf "$T"
manifest:
skills/5t111111/git-operation/SKILL.mdsource content
Git Operation Skill
This skill provides a guide for performing basic Git operations especially for committing changes.
Committing Changes
- Git commit messages must always be written in English
- Summarize the changes concisely in the first line of the commit message
- If detailed explanations or additional information are needed in the commit message, insert a blank line after the first line, then describe them in bullet points
- Always run
to format the code before committingmise run fmt - Always run
before committing code changes to ensure no tests are failingmise run test