
Commit
- 45 installs
- 6 repo stars
- Updated July 22, 2026
- julianobarbosa/claude-code-skills
Helps with git & pull requests tasks.
About
commit is a Claude Code skill for git & pull requests. It helps solo builders move faster with AI-assisted development.
- commit
- Git & Pull Requests
- AI-coding skill
Commit by the numbers
- 45 all-time installs (skills.sh)
- +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #312 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/julianobarbosa/claude-code-skills --skill commitAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 45 |
|---|---|
| repo stars | ★ 6 |
| Last updated | July 22, 2026 |
| Repository | julianobarbosa/claude-code-skills ↗ |
What it does
Helps with git & pull requests tasks.
Files
Commit and Push Skill
1. Stage only files related to the current task 2. Run git commit --no-verify if pre-commit hooks fail on unrelated issues 3. Push to the current branch 4. Report the commit hash and branch name
NOTE: This repo uses Azure DevOps. For PRs use az repos pr create. NOTE: The commit-msg hook strips Co-Authored-By trailers so commits appear as sole-author.
---
Gotchas
- `git commit --no-verify` bypasses pre-commit hook — logged in reflog but easy to forget. A CI check that fails on no-verify trailers prevents drift.
- `commit-msg` hook transforms the message AFTER the editor closes — verify the final state with
git show -s --format=%B, not the editor draft. - Azure DevOps strips `Co-Authored-By` server-side — local commits show co-author; PR display doesn't. Test what shows in the PR UI before assuming attribution worked.
- `git commit` on a detached HEAD creates an orphan —
git checkout mainloses it unless you branch first. Reflog recovers but only for 30 days. - Trailing whitespace in commit messages: some hooks normalize, some preserve. Format-checks comparing raw vs normalized fail confusingly.