Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,23 @@ gitnexus wiki --model <model> # Wiki with custom LLM model (default: gpt-4o-m
gitnexus wiki --base-url <url> # Wiki with custom LLM API base URL
```

### Custom Ignore Patterns

By default, GitNexus excludes common non-source files (dependencies, build outputs, binaries, etc.). To exclude additional paths, create a `.gitnexusignore` file at your repo root using standard [gitignore syntax](https://git-scm.com/docs/gitignore):

```gitignore
# Vendored frontend bundles
vendor/assets/js/

# Generated protocol buffers
src/generated/

# Specific large file
data/fixtures/seed.sql
```

The file is applied on top of the built-in defaults — you don't need to re-specify things like `node_modules` or `dist`. If no `.gitnexusignore` exists, behavior is unchanged. Re-run `gitnexus analyze --force` after creating or updating the file.

### What Your AI Agent Gets

**7 tools** exposed via MCP:
Expand Down