Install
openclaw skills install git-flow-helperAssist with Git branch management, merging, rebasing, cherry-picking, and cleaning merged branches for smoother workflow.
openclaw skills install git-flow-helper智能 Git 操作助手,帮助处理分支、合并、冲突等。
# 创建分支
git checkout -b feature/new-feature
# 合并分支
git merge feature/new-feature
# 变基
git rebase main
# Cherry-pick
git cherry-pick abc123
# 清理已合并分支
git branch --merged | grep -v '*' | xargs git branch -d