git-pull-all
1.0.0
dotnet tool install --global git-pull-all --version 1.0.0
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
dotnet tool install --local git-pull-all --version 1.0.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=git-pull-all&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package git-pull-all --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
git-pull-all
A CLI tool that recursively finds and updates all git repositories in a directory.
Install
dotnet tool install -g git-pull-all
dotnet tool install -g git-fetch-all
Usage
# Pull all repos under the current directory
git pull-all
# Pull all repos under a specific path
git pull-all ~/github
# Only fetch, don't merge
git fetch-all
# Run sequentially for predictable output ordering
git pull-all --sequential
# Limit parallelism
git pull-all -j 4
# Pass extra arguments to git
git fetch-all -- --all --prune
How it works
- Recursively searches for directories containing
.git - Detects regular repos, linked worktrees, and bare repo worktree layouts (e.g. from git-wt)
git-pull-allrunsgit pullin each repo (respects your git config likepull.rebase)git-fetch-allrunsgit fetchin each repo- Parallel by default for speed,
--sequentialfor deterministic ordering - Worktrees sharing the same repository only fetch once
Options
| Option | Description |
|---|---|
path |
Root directory to search (default: current directory) |
-s, --sequential |
Run sequentially for predictable ordering |
-j, --max-parallelism |
Maximum concurrent operations (default: CPU count) |
--color |
Force colored output even when piped |
--no-color |
Disable colored output |
-- <args> |
Extra arguments to pass to the git command |
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 51 | 3/27/2026 |