https://github.com/matttproud/stripper
Binary stripper identifies files that .gitignore, .gcloudignore, and the like would ignore or remove.
https://github.com/matttproud/stripper
appengine gcloud git release-automation rust
Last synced: about 2 months ago
JSON representation
Binary stripper identifies files that .gitignore, .gcloudignore, and the like would ignore or remove.
- Host: GitHub
- URL: https://github.com/matttproud/stripper
- Owner: matttproud
- License: apache-2.0
- Created: 2025-08-29T04:30:47.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-11-03T20:05:00.000Z (8 months ago)
- Last Synced: 2025-12-10T18:53:31.548Z (7 months ago)
- Topics: appengine, gcloud, git, release-automation, rust
- Language: Rust
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stripper
A command-line tool to flag files in the working directory that would be
ignored by `.gitignore` or `.gcloudignore` rules.
This exists to help in cases where `gcloud` CLI and friends do not cull files on
deployment adequately. This tool should ultimately be a bug filed against
Google App Engine instead.
## Synopsis
`stripper` scans the current directory and lists files that match ignore rules,
helping you identify files that would be excluded by Git or Google Cloud.
## Build
```sh
cargo build --release
```
## Install
```sh
cargo install --git https://github.com/matttproud/stripper.git
```
## Usage
```sh
stripper .gcloudignore
```
This will print the list of ignored files in the current directory.
Hypothetically this can be aggressively used as such:
```sh
stripper .gcloudignore | xargs -n1 -P1 rm
```