Create a conventional commit with all changes and push to remote
Create a conventional commit with all changes and push to remote. Use this when you want to quickly commit and push your work without manually running git commands.
/plugin marketplace add kriscard/kriscard-claude-plugins/plugin install essentials@kriscardCreate a conventional commit with all current changes and push to the remote repository.
Run git status to see all changes
Run git diff to review the changes
Analyze the changes and determine the appropriate conventional commit type:
feat: for new featuresfix: for bug fixesdocs: for documentation changesstyle: for formatting changesrefactor: for code refactoringtest: for test additions/changeschore: for maintenance tasksStage by changes similar and logic changes with git add
Create a conventional commit with a descriptive message but don't overengineer the message description stay simple
Push to the current branch with git push