git-cli 0.5.5

A CLI tool that translates natural-language task descriptions into git commands using a local Ollama LLM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
description: Commit message conventions - use conventional commits (feat/fix/refactor/etc), never CN-XXXX
alwaysApply: true
---

# Commit Messages

Use conventional commit prefixes for all git commits:

- `feat:` for new features
- `fix:` for bug fixes
- `refactor:` for code refactoring
- `test:` for adding/updating tests
- `docs:` for documentation changes
- `chore:` for maintenance tasks

Do NOT use `CN-XXXX:` or any ticket-number prefix notation.