🧪 Skills
Git Flow Helper
Assist with Git branch management, merging, rebasing, cherry-picking, and cleaning merged branches for smoother workflow.
v1.0.0
Description
Git Flow Helper
智能 Git 操作助手,帮助处理分支、合并、冲突等。
功能
- 分支管理
- 智能合并
- Cherry-pick
- 清理已合并分支
- Rebase 辅助
触发词
- "git操作"
- "git命令"
- "git flow"
命令示例
# 创建分支
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
操作
- create-branch: 创建新分支
- merge: 合并分支
- rebase: 变基操作
- cherry-pick: 挑选提交
- clean-branches: 清理已合并分支
Reviews (0)
Sign in to write a review.
No reviews yet. Be the first to review!
Comments (0)
No comments yet. Be the first to share your thoughts!