Gissy is very easy to install and configure as follows:
Installation
- Global installation (recommended): Run
npm install -g gissy
can be used in any path - Ad hoc use: can be run directly via npx, e.g.
npx gissy status
Basic Configuration
In the project root directory, create the.gissyrc.json
file, the configuration items include:
- Target branch
- Whether to enable runTests and runLint.
- Whether to use AI (useAI)
- AutoCommit and autoPush.
- Customize the testCommand and lintCommand commands.
- Ignore file list (watchIgnore)
AI Configuration
establish.env
file to add the API key:
- OPENAI_API_KEY
- GEMINI_API_KEY
- ADDIS_AI_API_KEY
This answer comes from the articleGissy: a command line assistant that uses AI to enhance Git workflowsThe