Git Pushing

sickn33's avatarfrom sickn33
2.7kstars🔀574forks📁View on GitHub🕐Updated Jan 1, 1970

When & Why to Use This Skill

This Claude skill automates the essential Git version control workflow by staging changes, generating standardized conventional commit messages, and pushing code to remote repositories. It streamlines the development process, ensuring that project histories remain clean, professional, and consistent with industry best practices without requiring manual command-line execution.

Use Cases

  • Streamlined Code Deployment: Quickly stage and push local changes to GitHub or other remote platforms immediately after completing a feature or bug fix.
  • Standardized Commit History: Automatically apply conventional commit formatting (e.g., feat:, fix:) to maintain a readable and professional repository log for team collaboration.
  • Efficient Remote Syncing: Use natural language commands like 'push my work' to trigger a complete sync with the remote branch, reducing the friction of manual git commands.
  • Automated Staging and Pushing: Simplify the 'save and share' process by combining staging, committing, and pushing into a single automated step.
namegit-pushing
descriptionStage, commit, and push git changes with conventional commit messages. Use when user wants to commit and push changes, mentions pushing to remote, or asks to save and push their work. Also activates when user says "push changes", "commit and push", "push this", "push to github", or similar git workflow requests.

Git Push Workflow

Stage all changes, create a conventional commit, and push to the remote branch.

When to Use

Automatically activate when the user:

  • Explicitly asks to push changes ("push this", "commit and push")
  • Mentions saving work to remote ("save to github", "push to remote")
  • Completes a feature and wants to share it
  • Says phrases like "let's push this up" or "commit these changes"

Workflow

ALWAYS use the script - do NOT use manual git commands:

bash skills/git-pushing/scripts/smart_commit.sh

With custom message:

bash skills/git-pushing/scripts/smart_commit.sh "feat: add feature"

Script handles: staging, conventional commit message, Claude footer, push with -u flag.

Git Pushing – AI Agent Skills | Claude Skills