Skip to content

Commit

Permalink
feat: commit with descriptions
Browse files Browse the repository at this point in the history
Creates commits with messages and descriptions.
  • Loading branch information
fanyang89 committed Dec 20, 2024
1 parent 8316f1e commit 39bba46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aicmt/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def run(self):
self.git_ops.stage_files(group["files"])

# Create commit
self.git_ops.commit_changes(group["commit_message"])
self.git_ops.commit_changes(group["commit_message"] + "\n\n" + group["description"])

self.cli.display_success(f"Created commit: {group['commit_message']}")
except Exception as e:
Expand Down

0 comments on commit 39bba46

Please sign in to comment.