Crates.io | gitjuggling |
lib.rs | gitjuggling |
version | |
source | src |
created_at | 2023-03-05 14:49:20.716268 |
updated_at | 2025-01-01 20:57:07.292635 |
description | Run a git command in all repositories under the current working directory |
homepage | |
repository | https://github.com/vrischmann/gitjuggling |
max_upload_size | |
id | 801471 |
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` |
size | 0 |
This is a simple tool to run a git command in all repositories under the current working directory.
For example, with the following directory layout:
.
├── bar
│ ├── foobar
│ └── .git
├── baz
│ ├── foobar
│ └── .git
└── foo
├── foobar
└── .git
You can run git pull
in all repositories like this:
$ gitjuggling fetch --all -p
/tmp/test/foo executing fetch --all -p
/tmp/test/baz executing fetch --all -p
/tmp/test/bar executing fetch --all -p
3 items succeeded, 0 items failed
You can use the COPR repository:
$ sudo dnf copr enable vrischmann/gitjuggling
$ sudo dnf install --refresh gitjuggling