在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用git
星标3
分支2
更新时间2026年4月29日 09:34
Advanced history manipulation, recovery, and diagnostics.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Advanced history manipulation, recovery, and diagnostics.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Search, read, and send emails via Apple Mail IPC. No TCC issues.
Structured code review with SOLID, security, and quality checks.
Systematic root cause analysis — find the cause before fixing.
Secure coding patterns and security scanning tools.
Fetch version-specific documentation and code examples.
Orchestrate research, planning, implementation, and verification.
| name | git |
| description | Advanced history manipulation, recovery, and diagnostics. |
Treat history as a document to be groomed for clarity.
git rebase -i HEAD~n # Groom last n commits (squash/edit/drop)
git commit --amend --no-edit # Add staged changes to last commit
git cherry-pick <hash> # Apply specific commit to current branch
git reflog # Find "lost" commits (HEAD history)
git reset --hard HEAD@{n} # Restore to a specific reflog state
git reset --soft HEAD~1 # Undo commit, keep changes staged
git restore <file> # Discard local changes
git log -S "string" # Find when a string was added/removed (Pickaxe)
git log -L :<func>:<file> # Evolution of a specific function
git blame -L 10,20 <file> # Line-level authorship
git show --name-only <hash> # List files changed in a commit
git stash push -m "msg" # Save dirty state
git stash pop # Restore dirty state
git clean -fd # Remove untracked files/dirs
git worktree add ../path br # Work on another branch simultaneously