SYNOPSIS
--------
[synopsis]
-git backfill [--min-batch-size=<n>] [--[no-]sparse]
+git backfill [--min-batch-size=<n>] [--[no-]sparse] [<revision-range>]
DESCRIPTION
-----------
time.
By default, `git backfill` downloads all blobs reachable from the `HEAD`
-commit. This set can be restricted or expanded using various options.
+commit. This set can be restricted or expanded using various options below.
THIS COMMAND IS EXPERIMENTAL. ITS BEHAVIOR MAY CHANGE IN THE FUTURE.
current sparse-checkout. If the sparse-checkout feature is enabled,
then `--sparse` is assumed and can be disabled with `--no-sparse`.
-You may also specify the commit limiting options from linkgit:git-rev-list[1].
+`<revision-range>`::
+ Backfill only blobs reachable from commits in the specified
+ revision range. When no _<revision-range>_ is specified, it
+ defaults to `HEAD` (i.e. the whole history leading to the
+ current commit). For a complete list of ways to spell
+ _<revision-range>_, see the "Specifying Ranges" section of
+ linkgit:gitrevisions[7].
++
+You may also use commit-limiting options understood by
+linkgit:git-rev-list[1] such as `--first-parent`, `--since`, or pathspecs.
SEE ALSO
--------
#include "path-walk.h"
static const char * const builtin_backfill_usage[] = {
- N_("git backfill [--min-batch-size=<n>] [--[no-]sparse]"),
+ N_("git backfill [--min-batch-size=<n>] [--[no-]sparse] [<revision-range>]"),
NULL
};