An open API service indexing awesome lists of open source software.

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.

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
```