Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:2
forks:0
updated:May 6, 2026 at 11:32
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | git-workflow |
| description | Git commit workflow. Load when staging or committing. |
git add -Agit diff --stagedgit diffgit status and flag unrelated modified filesgit add <file> or git add -p)git diff --staged to verifytype: description (e.g., feat: add mask function)git logIf unrelated changes exist, create multiple commits:
git add <files-for-commit-1>
git commit -m "type: description"
git add <files-for-commit-2>
git commit -m "type: description"
git reset HEAD~1 # undo last commit (keep changes)
git reset --soft HEAD~1 # undo last commit (keep staged)