Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .commit_suggest_history.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"entries": [
{
"message": "Feat(cmd, templater): scaffold propose to enable bug fix",
"timestamp": "2025-11-09T10:21:44.009545+07:00"
}
]
}
4 changes: 2 additions & 2 deletions cmd/propose.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var (
Use: "propose",
Short: "Propose commit messages from git diff",
Long: `Analyze staged changes and suggest commit messages based on the context.

When using --interactive (-i) or --suggestions (-s), multiple suggestions will be shown
ranked by how well they match the context (file types, changes, purposes).

Expand Down Expand Up @@ -75,7 +75,7 @@ func runPropose(cmd *cobra.Command, args []string) error {
}

if len(changes) == 0 {
return fmt.Errorf("no staged changes")
return fmt.Errorf("⚠️ no staged changes")
}

analyzer := analyzer.NewAnalyzer(changes, cfg)
Expand Down
Loading