git-find

crates license crate version

Actions Status Documentation

crates download GitHub All Releases

A tool (cli & lib) to find and broadcast commands on local git repositories.

Why

Because I need a tool to list and to reorg my local git repositories.

Usage Cli

```sh $> git find -h git-find 0.5.0 davidB A tool (cli & lib) to find local git repositories.

USAGE: git-find [FLAGS] [OPTIONS] [DIR]

FLAGS: -h, --help Prints help information -V, --version Prints version information -v, --verbose Verbose mode (-v, -vv, -vvv, etc.) print on stderr

OPTIONS: -t, --tmpl format of the output print on stdout [default: {{with .workingpaths}}{{if .conflicted}}C{{else}} {{end}}{{if .modified}}M{{else}}{{if .added}}M{{else}}{{if .deleted}}M{{else}}{{if .renamed}}M{{else}} {{end}}{{end}}{{end}}{{end}}{{if .untracked}}U{{else}} {{end}}{{end}} {{ .path.filename }} {{ .path.full }} {{with .remotes.origin}} {{ .name }} {{.url_full}} {{end}}]

ARGS:

root directory of the search [default: .] ```

Template format

The template format is a subset of golang text/template.

Possibles values

!! Experimental: values could change with future release !!

For scripting

  1. Use explicit template within your script (the default template could change with each release)
  2. If the template is a shell script (the tips could be used with every interpreter: python, ruby, ...), then you can

    ```sh

    run it directly

    git find -t '...' | sh

    generate a script and run it later (maybe after review)

    git find -t '...' > myscript.sh sh myscript.sh

    ```

Samples

Install

From cargo

With Rust's package manager cargo, you can install via:

sh cargo install git-find

Note that rust version 1.26.0 or later is required.

From binaries

!! Experimental !!

The release page includes precompiled binaries for Linux, macOS and Windows.

sh tar -xzvf git-find_0.3.2-x86_64-unknown-linux-gnu.tar.gz chmod a+x git-find mv git-find $HOME/bin rm git-find_0.2.2-linux.tar.gz

From source

```sh git clone https://github.com/davidB/git-find

Build

cd git-find cargo build

Run unit tests and integration tests

cargo test

Install

cargo install ```

Related and similar

Some tools to help management of multi repository But not the same features, else no need to re-do.

Informations

Actions (broadcast)

TODO