aixgit is a context-aware AI CLI proxy for Git that translates natural language intent into Git commands. essly, acting as a smart wrapper around Git.
# Clone the repository and install it locally
pip install -e .Check Environment:
aixgit --doctor
# 或者使用简写
aixgit -dInitialize aixgit (in any Git repository):
aixgit --initCommon Examples:
# Commit changes
aixgit commit "your message"This creates a .aixgit directory in the repository. (Note: we should probably consider if the config dir needs renaming too, but keeping .aixgit for now)
aixgit "Fix the login bug and push to main"
## Troubleshooting (Windows)
If you get a `command not found` error after installation:
1. Ensure your Python `Scripts` directory is in your system **PATH**.
2. Alternatively, use `python -m aixgit` instead of `aixgit`.
3. Try restarting your terminal.