Metadata-Version: 2.3
Name: gitgather
Version: 0.0.2
Summary: A simple tool to gather source code from a local repo or folder into a single file for LLM context windows.
Project-URL: Homepage, https://github.com/claysauruswrecks/gitgather
Project-URL: Issues, https://github.com/claysauruswrecks/gitgather/issues
Author-email: claysauruswrecks <44852834+claysauruswrecks@users.noreply.github.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Provides-Extra: test
Requires-Dist: build; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest>=8.1.1; extra == 'test'
Requires-Dist: twine; extra == 'test'
Description-Content-Type: text/markdown

# gitgather

[gitgather on PyPI](https://pypi.org/project/gitgather/)

To install `gitgather`, run the following command:

```bash
pip install gitgather
```

```bash
$ gitgather --help
usage: gitgather [-h] [--no-git] [--all] [--no-dotfiles] [-v] [--include INCLUDE] [--exclude EXCLUDE] repo_path output_file

Concatenate git repository files for LLM context analysis.

positional arguments:
  repo_path          Path to the git repository
  output_file        Output file path

options:
  -h, --help         show this help message and exit
  --no-git           Include all files, not just those tracked by git
  --all              Include all files, including hidden ones (overrides --no-dotfiles)
  --no-dotfiles      Exclude dotfiles
  -v, --verbose      Enable verbose output
  --include INCLUDE  Include files matching these patterns
  --exclude EXCLUDE  Exclude files matching these patterns
```
