diff --git a/plugins/commit-commands/commands/commit-push-pr.md b/plugins/commit-commands/commands/commit-push-pr.md index 5ebdd02948..20365aefe9 100644 --- a/plugins/commit-commands/commands/commit-push-pr.md +++ b/plugins/commit-commands/commands/commit-push-pr.md @@ -6,7 +6,7 @@ description: Commit, push, and open a PR ## Context - Current git status: !`git status` -- Current git diff (staged and unstaged changes): !`git diff HEAD` +- Current git diff (staged and unstaged changes): !`git diff HEAD --stat` - Current branch: !`git branch --show-current` ## Your task diff --git a/plugins/commit-commands/commands/commit.md b/plugins/commit-commands/commands/commit.md index 31ef0790b7..3e78ca5e6f 100644 --- a/plugins/commit-commands/commands/commit.md +++ b/plugins/commit-commands/commands/commit.md @@ -6,7 +6,7 @@ description: Create a git commit ## Context - Current git status: !`git status` -- Current git diff (staged and unstaged changes): !`git diff HEAD` +- Current git diff (staged and unstaged changes): !`git diff HEAD --stat` - Current branch: !`git branch --show-current` - Recent commits: !`git log --oneline -10`