From a3f79e9abdbdb27308ac7e3d9e362bcc361cecdc Mon Sep 17 00:00:00 2001 From: Derrick Stolee Date: Mon, 3 Feb 2025 17:11:03 +0000 Subject: 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 Signed-off-by: Junio C Hamano --- Documentation/git-backfill.txt | 25 +++++++++++++++++++++++++ Documentation/meson.build | 1 + 2 files changed, 26 insertions(+) create mode 100644 Documentation/git-backfill.txt (limited to 'Documentation') 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 [] + +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, -- cgit v1.3-5-g9baa