diff options
| author | Derrick Stolee <derrickstolee@github.com> | 2025-02-03 17:11:03 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-02-03 16:12:41 -0800 |
| commit | a3f79e9abdbdb27308ac7e3d9e362bcc361cecdc (patch) | |
| tree | ea7f9d2fff7dae1b384a2b19036e16cf0b80b152 /Documentation | |
| parent | e5a0d5d8bbeed7d0cb21533f9727591e110f50b8 (diff) | |
| download | git-a3f79e9abdbdb27308ac7e3d9e362bcc361cecdc.tar.xz | |
backfill: add builtin boilerplate
In anticipation of implementing 'git backfill', populate the necessary files
with the boilerplate of a new builtin. Mark the builtin as experimental at
this time, allowing breaking changes in the near future, if necessary.
Signed-off-by: Derrick Stolee <stolee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
| -rw-r--r-- | Documentation/git-backfill.txt | 25 | ||||
| -rw-r--r-- | Documentation/meson.build | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/git-backfill.txt b/Documentation/git-backfill.txt new file mode 100644 index 0000000000..ab384dad6e --- /dev/null +++ b/Documentation/git-backfill.txt @@ -0,0 +1,25 @@ +git-backfill(1) +=============== + +NAME +---- +git-backfill - Download missing objects in a partial clone + + +SYNOPSIS +-------- +[synopsis] +git backfill [<options>] + +DESCRIPTION +----------- + +THIS COMMAND IS EXPERIMENTAL. ITS BEHAVIOR MAY CHANGE IN THE FUTURE. + +SEE ALSO +-------- +linkgit:git-clone[1]. + +GIT +--- +Part of the linkgit:git[1] suite diff --git a/Documentation/meson.build b/Documentation/meson.build index 2a26fa8a5f..5e9e3e19c5 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -6,6 +6,7 @@ manpages = { 'git-apply.txt' : 1, 'git-archimport.txt' : 1, 'git-archive.txt' : 1, + 'git-backfill.txt' : 1, 'git-bisect.txt' : 1, 'git-blame.txt' : 1, 'git-branch.txt' : 1, |
