Install
openclaw skills install @cooperiano/git-opsopenclaw skills install @cooperiano/git-opsgit status 先检查再操作git status / git log --oneline -20 / git diff / git branch -a
git add <file> / git add -A / git commit -m "msg" / git commit --amend
git branch <name> / git checkout -b <name> / git merge <branch> / git branch -d
git pull --rebase / git push / git push -u origin <branch> / git fetch
git stash / git stash pop / git stash list
git reset <file> / git checkout -- <file> / git revert <commit>
git tag v1.0.0 / git tag -a v1.0.0 -m "msg" / git push origin v1.0.0
分支: feature/fix/chore | Commit: Conventional Commits | 经常pull | 一个大功能=一个分支+多个小commit