Install
openclaw skills install git-hub-issusLocal git operations for project management. Use when: (1) creating branches for new features/issues, (2) committing and pushing code, (3) pulling latest cha...
openclaw skills install git-hub-issusLocal git operations for managing project code.
For new features/issues, create branches with pattern:
feature/issue-{number}-{brief-description}
For bug fixes:
fix/issue-{number}-{brief-description}
cd /path/to/project
git checkout main
git pull origin main
git checkout -b feature/issue-1-add-dark-mode
git add -A
git commit -m "feat: add dark mode support (closes #1)"
git push -u origin feature/issue-1-add-dark-mode
github skill → gh pr creategitlab-ops skill → glab mr create# 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
| Project | Path | Remote |
|---|---|---|
| yeahmobiEverything | /Users/zhujinqi/Documents/javacode/learn/yeahmobiEverything | GitHub (zhulaoqi) |
| ad-pex-ai | TBD | GitLab (ad-pex/ad-pex-ai) |
Use conventional commits:
feat: new featurefix: bug fixrefactor: code refactoringstyle: UI/style changesdocs: documentationchore: maintenance