← 返回
开发者工具

git-hub-issus

Local git operations for project management. Use when: (1) creating branches for new features/issues, (2) committing and pushing code, (3) pulling latest cha...
本地Git操作,用于项目管理。适用于:① 为新功能或问题创建分支;② 提交并推送代码;③ 拉取最新更改。
zhulaoqi
开发者工具 clawhub v1.0.0 1 版本 99713.5 Key: 无需
★ 0
Stars
📥 1,044
下载
💾 13
安装
1
版本
#latest

概述

Git Ops Skill

Local git operations for managing project code.

Branch Naming Convention

For new features/issues, create branches with pattern:

feature/issue-{number}-{brief-description}

For bug fixes:

fix/issue-{number}-{brief-description}

Standard Workflow

Start new feature from an issue

cd /path/to/project
git checkout main
git pull origin main
git checkout -b feature/issue-1-add-dark-mode

After coding is done

git add -A
git commit -m "feat: add dark mode support (closes #1)"
git push -u origin feature/issue-1-add-dark-mode

Create PR/MR after push

  • GitHub: use github skill → gh pr create
  • GitLab: use gitlab-ops skill → glab mr create

Common Commands

# Status
git status
git log --oneline -10
git diff
git diff --staged

# Branch management
git branch -a
git checkout main
git checkout -b feature/xxx
git branch -d old-branch

# Sync
git pull origin main
git fetch --all
git rebase main

# Stash
git stash
git stash pop
git stash list

Known Project Paths

ProjectPathRemote
-----------------------
yeahmobiEverything/Users/zhujinqi/Documents/javacode/learn/yeahmobiEverythingGitHub (zhulaoqi)
ad-pex-aiTBDGitLab (ad-pex/ad-pex-ai)

Commit Message Convention

Use conventional commits:

  • feat: new feature
  • fix: bug fix
  • refactor: code refactoring
  • style: UI/style changes
  • docs: documentation
  • chore: maintenance

Notes

  • Always pull latest before creating new branches
  • Never force push to main/master
  • Ask user before any destructive operations (reset --hard, force push)

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 04:48 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Agent Browser

matrixy
专为AI智能体优化的无头浏览器自动化CLI,支持无障碍树快照和基于引用的元素选择。
★ 427 📥 118,119
developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,768
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 323,989