Skip to content

Instantly share code, notes, and snippets.

@themusicman
Last active July 25, 2025 09:49
Show Gist options
  • Select an option

  • Save themusicman/7b43a8b69b99cd0b5625e77c9339c5f0 to your computer and use it in GitHub Desktop.

Select an option

Save themusicman/7b43a8b69b99cd0b5625e77c9339c5f0 to your computer and use it in GitHub Desktop.
description Commit changes without Claude attribution
allowed_tools
Bash
Read
Glob
Grep

Commit the current changes to git without Claude attribution. Follow these steps:

  1. Run git status to see what needs to be committed (including untracked files)
  2. Run git diff to review the changes
  3. Add all changes including untracked files:
    • For specific files: git add etc.
    • Or to add everything: git add .
    • Make sure to include any new/untracked files shown in git status
  4. Create a commit with a descriptive message based on the changes
  5. DO NOT include the Claude attribution footer
  6. Use a simple commit message format without emojis or attribution

The commit message should focus on what changed and why, using conventional commit format (feat:, fix:, chore:, etc.).

$ARGUMENTS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment