Skip to content
This repository was archived by the owner on Mar 22, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions skills/cco-commit/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Pre-checks → Analyze → Execute → Verify → Summary
2. Verify git repo: `git rev-parse --git-dir` → not a repo: stop with "Not a git repository. Run `git init` first."
3. Verify not detached HEAD: `git branch --show-current` → empty: stop with "Detached HEAD — checkout a branch first"
4. `git fetch origin 2>/dev/null` (best-effort, no stop on failure)
4a. On main/master: if behind upstream → `git pull origin {branch}` silently. Log: "Pulled {n} commit(s) from origin/{branch}."

**1.2 Branch management:**

Expand Down
Loading