Autogenerated manpages for v2.40.1-423-g2807b
[git-manpages.git] / man1 / scalar.1
blobf283949528bc709968843e8fe06036e7fb180fab
1 '\" t
2 .\"     Title: scalar
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 04/25/2023
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.40.1.423.g2807bd2c10
8 .\"  Language: English
9 .\"
10 .TH "SCALAR" "1" "04/25/2023" "Git 2\&.40\&.1\&.423\&.g2807bd" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 scalar \- A tool for managing large Git repositories
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 scalar clone [\-\-single\-branch] [\-\-branch <main\-branch>] [\-\-full\-clone] <url> [<enlistment>]
36 scalar list
37 scalar register [<enlistment>]
38 scalar unregister [<enlistment>]
39 scalar run ( all | config | commit\-graph | fetch | loose\-objects | pack\-files ) [<enlistment>]
40 scalar reconfigure [ \-\-all | <enlistment> ]
41 scalar diagnose [<enlistment>]
42 scalar delete <enlistment>
43 .fi
44 .sp
45 .SH "DESCRIPTION"
46 .sp
47 Scalar is a repository management tool that optimizes Git for use in large repositories\&. Scalar improves performance by configuring advanced Git settings, maintaining repositories in the background, and helping to reduce data sent across the network\&.
48 .sp
49 An important Scalar concept is the enlistment: this is the top\-level directory of the project\&. It usually contains the subdirectory \fBsrc/\fR which is a Git worktree\&. This encourages the separation between tracked files (inside \fBsrc/\fR) and untracked files, such as build artifacts (outside \fBsrc/\fR)\&. When registering an existing Git worktree with Scalar whose name is not \fBsrc\fR, the enlistment will be identical to the worktree\&.
50 .sp
51 The \fBscalar\fR command implements various subcommands, and different options depending on the subcommand\&. With the exception of \fBclone\fR, \fBlist\fR and \fBreconfigure \-\-all\fR, all subcommands expect to be run in an enlistment\&.
52 .sp
53 The following options can be specified \fIbefore\fR the subcommand:
54 .PP
55 \-C <directory>
56 .RS 4
57 Before running the subcommand, change the working directory\&. This option imitates the same option of
58 \fBgit\fR(1)\&.
59 .RE
60 .PP
61 \-c <key>=<value>
62 .RS 4
63 For the duration of running the specified subcommand, configure this setting\&. This option imitates the same option of
64 \fBgit\fR(1)\&.
65 .RE
66 .SH "COMMANDS"
67 .SS "Clone"
68 .PP
69 clone [<options>] <url> [<enlistment>]
70 .RS 4
71 Clones the specified repository, similar to
72 \fBgit-clone\fR(1)\&. By default, only commit and tree objects are cloned\&. Once finished, the worktree is located at
73 \fB<enlistment>/src\fR\&.
74 .sp
75 The sparse\-checkout feature is enabled (except when run with
76 \fB\-\-full\-clone\fR) and the only files present are those in the top\-level directory\&. Use
77 \fBgit sparse\-checkout set\fR
78 to expand the set of directories you want to see, or
79 \fBgit sparse\-checkout disable\fR
80 to expand to all files (see
81 \fBgit-sparse-checkout\fR(1)
82 for more details)\&. You can explore the subdirectories outside your sparse\-checkout by using
83 \fBgit ls\-tree HEAD[:<directory>]\fR\&.
84 .RE
85 .PP
86 \-b <name>, \-\-branch <name>
87 .RS 4
88 Instead of checking out the branch pointed to by the cloned repository\(cqs HEAD, check out the
89 \fB<name>\fR
90 branch instead\&.
91 .RE
92 .PP
93 \-\-[no\-]single\-branch
94 .RS 4
95 Clone only the history leading to the tip of a single branch, either specified by the
96 \fB\-\-branch\fR
97 option or the primary branch remote\(cqs
98 \fBHEAD\fR
99 points at\&.
101 Further fetches into the resulting repository will only update the remote\-tracking branch for the branch this option was used for the initial cloning\&. If the HEAD at the remote did not point at any branch when
102 \fB\-\-single\-branch\fR
103 clone was made, no remote\-tracking branch is created\&.
106 \-\-[no\-]full\-clone
107 .RS 4
108 A sparse\-checkout is initialized by default\&. This behavior can be turned off via
109 \fB\-\-full\-clone\fR\&.
111 .SS "List"
113 list
114 .RS 4
115 List enlistments that are currently registered by Scalar\&. This subcommand does not need to be run inside an enlistment\&.
117 .SS "Register"
119 register [<enlistment>]
120 .RS 4
121 Adds the enlistment\(cqs repository to the list of registered repositories and starts background maintenance\&. If
122 \fB<enlistment>\fR
123 is not provided, then the enlistment associated with the current working directory is registered\&.
125 Note: when this subcommand is called in a worktree that is called
126 \fBsrc/\fR, its parent directory is considered to be the Scalar enlistment\&. If the worktree is
127 \fInot\fR
128 called
129 \fBsrc/\fR, it itself will be considered to be the Scalar enlistment\&.
131 .SS "Unregister"
133 unregister [<enlistment>]
134 .RS 4
135 Remove the specified repository from the list of repositories registered with Scalar and stop the scheduled background maintenance\&.
137 .SS "Run"
139 scalar run ( all | config | commit\-graph | fetch | loose\-objects | pack\-files ) [<enlistment>]
140 .RS 4
141 Run the given maintenance task (or all tasks, if
142 \fBall\fR
143 was specified)\&. Except for
144 \fBall\fR
146 \fBconfig\fR, this subcommand simply hands off to
147 \fBgit-maintenance\fR(1)
148 (mapping
149 \fBfetch\fR
151 \fBprefetch\fR
153 \fBpack\-files\fR
155 \fBincremental\-repack\fR)\&.
157 These tasks are run automatically as part of the scheduled maintenance, as soon as the repository is registered with Scalar\&. It should therefore not be necessary to run this subcommand manually\&.
160 \fBconfig\fR
161 task is specific to Scalar and configures all those opinionated default settings that make Git work more efficiently with large repositories\&. As this task is run as part of
162 \fBscalar clone\fR
163 automatically, explicit invocations of this task are rarely needed\&.
165 .SS "Reconfigure"
167 After a Scalar upgrade, or when the configuration of a Scalar enlistment was somehow corrupted or changed by mistake, this subcommand allows to reconfigure the enlistment\&.
169 With the \fB\-\-all\fR option, all enlistments currently registered with Scalar will be reconfigured\&. Use this option after each Scalar upgrade\&.
170 .SS "Diagnose"
172 diagnose [<enlistment>]
173 .RS 4
174 When reporting issues with Scalar, it is often helpful to provide the information gathered by this command, including logs and certain statistics describing the data shape of the current enlistment\&.
176 The output of this command is a
177 \fB\&.zip\fR
178 file that is written into a directory adjacent to the worktree in the
179 \fBsrc\fR
180 directory\&.
182 .SS "Delete"
184 delete <enlistment>
185 .RS 4
186 This subcommand lets you delete an existing Scalar enlistment from your local file system, unregistering the repository\&.
188 .SH "SEE ALSO"
190 \fBgit-clone\fR(1), \fBgit-maintenance\fR(1)\&.
191 .SH "GIT"
193 Part of the \fBgit\fR(1) suite