gitsnap

Crates.iogitsnap
lib.rsgitsnap
version
sourcesrc
created_at2025-01-28 22:37:03.842647+00
updated_at2025-01-28 22:37:03.842647+00
descriptionA tool to take snapshots of GitHub repositories in a single text file.
homepage
repositoryhttps://github.com/flaviodelgrosso/GitSnap
max_upload_size
id1534111
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Flavio Del Grosso (flaviodelgrosso)

documentation

README

gitsnap

gitsnap is a CLI tool to take snapshots of GitHub repositories and convert them into readable text files.

Description

gitsnap allows you to download a GitHub repository and convert its contents into a single text file. You can specify a file size threshold to skip large files or include all files regardless of size. The tool also supports debug mode for verbose logging.

Installation

To install gitsnap, you need to have Rust and Cargo installed. You can install Rust and Cargo from rustup.rs.

Clone the repository and build the project:

git clone <https://github.com/flaviodelgrosso/GitSnap.git>
cd gitsnap
cargo build --release

Usage

Run the gitsnap command with the required arguments:

gitsnap <repository> [OPTIONS]

Arguments

  • repository: The GitHub repository URL or user/repo format (e.g., 'user/repo' or 'https://github.com/user/repo'). This argument is required.

Options

  • -o, --output <FILE>: Specify the output file path (defaults to repo_name.txt).
  • -t, --threshold <MB>: Set file size threshold in MB for text conversion (default: 0.1 MB). Files larger than this are skipped unless --include-all is used.
  • --include-all: Include all files, regardless of size or type. Overrides the threshold.
  • --debug: Enable debug mode with verbose logging.

Example

gitsnap user/repo -o output.txt -t 1.0 --debug

This command will download the user/repo repository, process files up to 1.0 MB, and save the output to output.txt with debug mode enabled.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Commit count: 5

cargo fmt