A tool (cli & lib) to find local git repositories.
* Why * Usage Cli * Template format * Possibles values * For scripting * Samples * Install * From cargo * From binaries * From source * Related and similar * Informations * Actions (broadcast) * TODO
Because I need a tool to list and to reorg my local git repositories.
```sh $> git find -h git-find 0.3.2 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
ARGS:
git status
to every repositories```sh git find -t 'cd {{ .path.full }}; echo "\n\n----\n$PWD"; git status' | sh ````
The template format is a subset of golang text/template.
!! Experimental: values could change with future release !!
git find -t '...' | sh
git find -t '...' > myscript.sh sh myscript.sh
```
tmpl
{{ .path.file_name }}\t{{ .path.full }}
```tmpl {{ .path.filename }}\t{{ .path.full }}\t{{with .remotes.origin}} {{ .name }} {{.urlfull}} {{.urlhost}} {{.urlpath}} {{end}} ````
tmpl
cd {{ .path.full }}; echo "\n\n---------------------------------------------\n$PWD"; git fetch
tmpl
echo "\n\n---------------------------------------------\n"
PRJ_SRC="{{ .path.full }}"
{{if .remotes.origin}}
PRJ_DST="$HOME/src/{{ .remotes.origin.url_host }}/{{ .remotes.origin.url_path}}"
{{else}}
PRJ_DST=$HOME/src/_local_/{{ .path.file_name}}
{{end}}
if [ ! -d "$PRJ_DST" ] ; then
read -p "move $PRJ_SRC to $PRJ_DST ?" answer
case $answer in
[yY]* )
mkdir -p $(dirname "$PRJ_DST")
mv "$PRJ_SRC" "$PRJ_DST"
;;
* ) ;;
esac
fi
* to list repo with some info (the default template of version 0.4.1)
tmpl
{{with .working_paths}}{{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}}\t{{ .path.file_name }}\t{{ .path.full }}\t{{with .remotes.origin}} {{ .name }} {{.url_full}} {{end}}
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.
!! 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
```sh git clone https://github.com/davidB/git-find
cd git-find cargo build
cargo test
cargo install ```
Some tools to help management of multi repository But not the same features, else no need to re-do.