5 releases
0.2.0 | Aug 27, 2024 |
---|---|
0.1.3 | Aug 24, 2024 |
0.1.2 | Aug 24, 2024 |
0.1.1 | Aug 9, 2024 |
0.1.0 | Aug 9, 2024 |
#217 in Filesystem
206 downloads per month
10KB
137 lines
REPOCAT 🐱
This is a simple cli tool that accepts either:
- a github repo url
- a path to a folder
and concatenates all text/code files into a single txt file. This makes it easier to use as context for LLMs.
What file extensions does it look for?
Check src/main.rs for extensions. Feel free to make a PR to add more
Does it automatically filter some files?
Yes! repocat uses the ignore crate from ripgrep, meaning it ignores all of the following by default:
Files and directories that match glob patterns in these three categories:
.gitignore globs (including global and repo-specific globs). This includes .gitignore files in parent directories that are part of the same git repository. (Unless the --no-require-git flag is given.)
.ignore globs, which take precedence over all gitignore globs when there's a conflict. This includes .ignore files in parent directories.
.rgignore globs, which take precedence over all .ignore globs when there's a conflict. This includes .rgignore files in parent directories.
Hidden files and directories.
Binary files. (ripgrep considers any file with a NUL byte to be binary.)
Symbolic links aren't followed.
Dependencies
~7–20MB
~302K SLoC