⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content

Conversation

@getsolaris
Copy link

Summary

  • Add /commit-push command to fill the workflow gap between /commit and /commit-push-pr

Motivation

Currently, the commit-commands plugin has:

  • /commit - stages and commits only
  • /commit-push-pr - creates branch + commits + pushes + creates PR

However, there are many cases where you want to commit + push without creating a PR:

  • Working on a collaborative branch (push without PR)
  • Accumulating multiple commits before creating a PR later
  • Just wanting to trigger CI/CD

Changes

Command Behavior
/commit add + commit
/commit-push add + commit + push (NEW)
/commit-push-pr branch + commit + push + PR

Files Changed

  • commands/commit-push.md - New command definition
  • README.md - Documentation for the new command

Test Plan

  • Run /commit-push command in Claude Code
  • Verify changes are committed and pushed
  • Verify no PR is created
  • Verify it stays on current branch (no new branch created)

commit과 commit-push-pr 사이의 워크플로우 갭을 채우는 새로운 명령어를 추가합니다.

- /commit: add + commit만 수행
- /commit-push: add + commit + push 수행 (NEW)
- /commit-push-pr: 브랜치 생성 + commit + push + PR 생성

PR 생성 없이 push만 하고 싶은 경우에 유용합니다:
- 협업 브랜치에서 작업 중
- 여러 커밋 후 나중에 PR 생성
- CI 트리거만 원할 때
README.md에 /commit-push 명령어 문서를 추가합니다:
- 명령어 설명 및 사용법
- Best Practices 섹션
- Workflow Integration 예제
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant