Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 1 | git-sparse-checkout(1) |
| 2 | ====================== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 7c37da7 | 2022-03-09 22:19:31 | [diff] [blame] | 6 | git-sparse-checkout - Reduce your working tree to a subset of tracked files |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
| 11 | [verse] |
Junio C Hamano | 59a32b0 | 2021-12-10 22:53:38 | [diff] [blame] | 12 | 'git sparse-checkout <subcommand> [<options>]' |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 13 | |
| 14 | |
| 15 | DESCRIPTION |
| 16 | ----------- |
| 17 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 18 | This command is used to create sparse checkouts, which change the |
| 19 | working tree from having all tracked files present to only having a |
| 20 | subset of those files. It can also switch which subset of files are |
| 21 | present, or undo and go back to having all tracked files present in |
| 22 | the working copy. |
Junio C Hamano | 7c37da7 | 2022-03-09 22:19:31 | [diff] [blame] | 23 | |
| 24 | The subset of files is chosen by providing a list of directories in |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 25 | cone mode (the default), or by providing a list of patterns in |
| 26 | non-cone mode. |
Junio C Hamano | 7c37da7 | 2022-03-09 22:19:31 | [diff] [blame] | 27 | |
| 28 | When in a sparse-checkout, other Git commands behave a bit differently. |
| 29 | For example, switching branches will not update paths outside the |
| 30 | sparse-checkout directories/patterns, and `git commit -a` will not record |
| 31 | paths outside the sparse-checkout directories/patterns as deleted. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 32 | |
| 33 | THIS COMMAND IS EXPERIMENTAL. ITS BEHAVIOR, AND THE BEHAVIOR OF OTHER |
| 34 | COMMANDS IN THE PRESENCE OF SPARSE-CHECKOUTS, WILL LIKELY CHANGE IN |
| 35 | THE FUTURE. |
| 36 | |
| 37 | |
| 38 | COMMANDS |
| 39 | -------- |
| 40 | 'list':: |
Junio C Hamano | 7c37da7 | 2022-03-09 22:19:31 | [diff] [blame] | 41 | Describe the directories or patterns in the sparse-checkout file. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 42 | |
Junio C Hamano | 05fe8d1 | 2022-01-04 00:50:38 | [diff] [blame] | 43 | 'set':: |
Junio C Hamano | 5f907e9 | 2022-02-26 00:21:27 | [diff] [blame] | 44 | Enable the necessary sparse-checkout config settings |
| 45 | (`core.sparseCheckout`, `core.sparseCheckoutCone`, and |
| 46 | `index.sparse`) if they are not already set to the desired values, |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 47 | populate the sparse-checkout file from the list of arguments |
| 48 | following the 'set' subcommand, and update the working directory to |
| 49 | match. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 50 | + |
Junio C Hamano | 5f907e9 | 2022-02-26 00:21:27 | [diff] [blame] | 51 | To ensure that adjusting the sparse-checkout settings within a worktree |
| 52 | does not alter the sparse-checkout settings in other worktrees, the 'set' |
| 53 | subcommand will upgrade your repository config to use worktree-specific |
| 54 | config if not already present. The sparsity defined by the arguments to |
| 55 | the 'set' subcommand are stored in the worktree-specific sparse-checkout |
| 56 | file. See linkgit:git-worktree[1] and the documentation of |
| 57 | `extensions.worktreeConfig` in linkgit:git-config[1] for more details. |
| 58 | + |
Junio C Hamano | 7c37da7 | 2022-03-09 22:19:31 | [diff] [blame] | 59 | When the `--stdin` option is provided, the directories or patterns are |
| 60 | read from standard in as a newline-delimited list instead of from the |
| 61 | arguments. |
Junio C Hamano | dac8677 | 2020-02-05 23:30:13 | [diff] [blame] | 62 | + |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 63 | By default, the input list is considered a list of directories, matching |
| 64 | the output of `git ls-tree -d --name-only`. This includes interpreting |
| 65 | pathnames that begin with a double quote (") as C-style quoted strings. |
| 66 | Note that all files under the specified directories (at any depth) will |
| 67 | be included in the sparse checkout, as well as files that are siblings |
| 68 | of either the given directory or any of its ancestors (see 'CONE PATTERN |
| 69 | SET' below for more details). In the past, this was not the default, |
| 70 | and `--cone` needed to be specified or `core.sparseCheckoutCone` needed |
| 71 | to be enabled. |
Junio C Hamano | 7c37da7 | 2022-03-09 22:19:31 | [diff] [blame] | 72 | + |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 73 | When `--no-cone` is passed, the input list is considered a list of |
| 74 | patterns. This mode has a number of drawbacks, including not working |
| 75 | with some options like `--sparse-index`. As explained in the |
| 76 | "Non-cone Problems" section below, we do not recommend using it. |
Junio C Hamano | 4078a55 | 2021-04-30 06:08:10 | [diff] [blame] | 77 | + |
Junio C Hamano | 05fe8d1 | 2022-01-04 00:50:38 | [diff] [blame] | 78 | Use the `--[no-]sparse-index` option to use a sparse index (the |
| 79 | default is to not use it). A sparse index reduces the size of the |
| 80 | index to be more closely aligned with your sparse-checkout |
| 81 | definition. This can have significant performance advantages for |
| 82 | commands such as `git status` or `git add`. This feature is still |
| 83 | experimental. Some commands might be slower with a sparse index until |
| 84 | they are properly integrated with the feature. |
Junio C Hamano | 4078a55 | 2021-04-30 06:08:10 | [diff] [blame] | 85 | + |
| 86 | **WARNING:** Using a sparse index requires modifying the index in a way |
| 87 | that is not completely understood by external tools. If you have trouble |
| 88 | with this compatibility, then run `git sparse-checkout init --no-sparse-index` |
| 89 | to rewrite your index to not be sparse. Older versions of Git will not |
| 90 | understand the sparse directory entries index extension and may fail to |
| 91 | interact with your repository until it is disabled. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 92 | |
Junio C Hamano | b082a53 | 2020-03-05 21:52:25 | [diff] [blame] | 93 | 'add':: |
Junio C Hamano | 7c37da7 | 2022-03-09 22:19:31 | [diff] [blame] | 94 | Update the sparse-checkout file to include additional directories |
| 95 | (in cone mode) or patterns (in non-cone mode). By default, these |
| 96 | directories or patterns are read from the command-line arguments, |
| 97 | but they can be read from stdin using the `--stdin` option. |
Junio C Hamano | b082a53 | 2020-03-05 21:52:25 | [diff] [blame] | 98 | |
Junio C Hamano | 0beab6c | 2020-05-26 18:32:25 | [diff] [blame] | 99 | 'reapply':: |
Junio C Hamano | 67cc2b7 | 2020-04-30 00:03:20 | [diff] [blame] | 100 | Reapply the sparsity pattern rules to paths in the working tree. |
| 101 | Commands like merge or rebase can materialize paths to do their |
| 102 | work (e.g. in order to show you a conflict), and other |
| 103 | sparse-checkout commands might fail to sparsify an individual file |
| 104 | (e.g. because it has unstaged changes or conflicts). In such |
| 105 | cases, it can make sense to run `git sparse-checkout reapply` later |
| 106 | after cleaning up affected paths (e.g. resolving conflicts, undoing |
| 107 | or committing changes, etc.). |
Junio C Hamano | 05fe8d1 | 2022-01-04 00:50:38 | [diff] [blame] | 108 | + |
| 109 | The `reapply` command can also take `--[no-]cone` and `--[no-]sparse-index` |
| 110 | flags, with the same meaning as the flags from the `set` command, in order |
| 111 | to change which sparsity mode you are using without needing to also respecify |
| 112 | all sparsity paths. |
Junio C Hamano | 67cc2b7 | 2020-04-30 00:03:20 | [diff] [blame] | 113 | |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 114 | 'disable':: |
| 115 | Disable the `core.sparseCheckout` config setting, and restore the |
Junio C Hamano | 05fe8d1 | 2022-01-04 00:50:38 | [diff] [blame] | 116 | working directory to include all files. |
| 117 | |
| 118 | 'init':: |
| 119 | Deprecated command that behaves like `set` with no specified paths. |
| 120 | May be removed in the future. |
| 121 | + |
| 122 | Historically, `set` did not handle all the necessary config settings, |
| 123 | which meant that both `init` and `set` had to be called. Invoking |
| 124 | both meant the `init` step would first remove nearly all tracked files |
| 125 | (and in cone mode, ignored files too), then the `set` step would add |
| 126 | many of the tracked files (but not ignored files) back. In addition |
| 127 | to the lost files, the performance and UI of this combination was |
| 128 | poor. |
| 129 | + |
| 130 | Also, historically, `init` would not actually initialize the |
| 131 | sparse-checkout file if it already existed. This meant it was |
| 132 | possible to return to a sparse-checkout without remembering which |
| 133 | paths to pass to a subsequent 'set' or 'add' command. However, |
| 134 | `--cone` and `--sparse-index` options would not be remembered across |
| 135 | the disable command, so the easy restore of calling a plain `init` |
| 136 | decreased in utility. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 137 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 138 | EXAMPLES |
| 139 | -------- |
| 140 | `git sparse-checkout set MY/DIR1 SUB/DIR2`:: |
| 141 | |
| 142 | Change to a sparse checkout with all files (at any depth) under |
| 143 | MY/DIR1/ and SUB/DIR2/ present in the working copy (plus all |
| 144 | files immediately under MY/ and SUB/ and the toplevel |
| 145 | directory). If already in a sparse checkout, change which files |
| 146 | are present in the working copy to this new selection. Note |
| 147 | that this command will also delete all ignored files in any |
| 148 | directory that no longer has either tracked or |
| 149 | non-ignored-untracked files present. |
| 150 | |
| 151 | `git sparse-checkout disable`:: |
| 152 | |
| 153 | Repopulate the working directory with all files, disabling sparse |
| 154 | checkouts. |
| 155 | |
| 156 | `git sparse-checkout add SOME/DIR/ECTORY`:: |
| 157 | |
| 158 | Add all files under SOME/DIR/ECTORY/ (at any depth) to the |
| 159 | sparse checkout, as well as all files immediately under |
| 160 | SOME/DIR/ and immediately under SOME/. Must already be in a |
| 161 | sparse checkout before using this command. |
| 162 | |
| 163 | `git sparse-checkout reapply`:: |
| 164 | |
| 165 | It is possible for commands to update the working tree in a |
| 166 | way that does not respect the selected sparsity directories. |
| 167 | This can come from tools external to Git writing files, or |
| 168 | even affect Git commands because of either special cases (such |
| 169 | as hitting conflicts when merging/rebasing), or because some |
| 170 | commands didn't fully support sparse checkouts (e.g. the old |
| 171 | `recursive` merge backend had only limited support). This |
| 172 | command reapplies the existing sparse directory specifications |
| 173 | to make the working directory match. |
| 174 | |
| 175 | INTERNALS -- SPARSE CHECKOUT |
| 176 | ---------------------------- |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 177 | |
Junio C Hamano | 7c37da7 | 2022-03-09 22:19:31 | [diff] [blame] | 178 | "Sparse checkout" allows populating the working directory sparsely. It |
| 179 | uses the skip-worktree bit (see linkgit:git-update-index[1]) to tell Git |
| 180 | whether a file in the working directory is worth looking at. If the |
| 181 | skip-worktree bit is set, and the file is not present in the working tree, |
| 182 | then its absence is ignored. Git will avoid populating the contents of |
| 183 | those files, which makes a sparse checkout helpful when working in a |
| 184 | repository with many files, but only a few are important to the current |
| 185 | user. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 186 | |
| 187 | The `$GIT_DIR/info/sparse-checkout` file is used to define the |
| 188 | skip-worktree reference bitmap. When Git updates the working |
| 189 | directory, it updates the skip-worktree bits in the index based |
| 190 | on this file. The files matching the patterns in the file will |
| 191 | appear in the working directory, and the rest will not. |
| 192 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 193 | INTERNALS -- NON-CONE PROBLEMS |
| 194 | ------------------------------ |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 195 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 196 | The `$GIT_DIR/info/sparse-checkout` file populated by the `set` and |
| 197 | `add` subcommands is defined to be a bunch of patterns (one per line) |
| 198 | using the same syntax as `.gitignore` files. In cone mode, these |
| 199 | patterns are restricted to matching directories (and users only ever |
| 200 | need supply or see directory names), while in non-cone mode any |
| 201 | gitignore-style pattern is permitted. Using the full gitignore-style |
| 202 | patterns in non-cone mode has a number of shortcomings: |
| 203 | |
| 204 | * Fundamentally, it makes various worktree-updating processes (pull, |
| 205 | merge, rebase, switch, reset, checkout, etc.) require O(N*M) pattern |
| 206 | matches, where N is the number of patterns and M is the number of |
| 207 | paths in the index. This scales poorly. |
| 208 | |
| 209 | * Avoiding the scaling issue has to be done via limiting the number |
| 210 | of patterns via specifying leading directory name or glob. |
| 211 | |
| 212 | * Passing globs on the command line is error-prone as users may |
| 213 | forget to quote the glob, causing the shell to expand it into all |
| 214 | matching files and pass them all individually along to |
| 215 | sparse-checkout set/add. While this could also be a problem with |
| 216 | e.g. "git grep -- *.c", mistakes with grep/log/status appear in |
| 217 | the immediate output. With sparse-checkout, the mistake gets |
| 218 | recorded at the time the sparse-checkout command is run and might |
| 219 | not be problematic until the user later switches branches or rebases |
| 220 | or merges, thus putting a delay between the user's error and when |
| 221 | they have a chance to catch/notice it. |
| 222 | |
| 223 | * Related to the previous item, sparse-checkout has an 'add' |
| 224 | subcommand but no 'remove' subcommand. Even if a 'remove' |
| 225 | subcommand were added, undoing an accidental unquoted glob runs |
| 226 | the risk of "removing too much", as it may remove entries that had |
| 227 | been included before the accidental add. |
| 228 | |
| 229 | * Non-cone mode uses gitignore-style patterns to select what to |
| 230 | *include* (with the exception of negated patterns), while |
| 231 | .gitignore files use gitignore-style patterns to select what to |
| 232 | *exclude* (with the exception of negated patterns). The |
| 233 | documentation on gitignore-style patterns usually does not talk in |
| 234 | terms of matching or non-matching, but on what the user wants to |
| 235 | "exclude". This can cause confusion for users trying to learn how |
| 236 | to specify sparse-checkout patterns to get their desired behavior. |
| 237 | |
| 238 | * Every other git subcommand that wants to provide "special path |
| 239 | pattern matching" of some sort uses pathspecs, but non-cone mode |
| 240 | for sparse-checkout uses gitignore patterns, which feels |
| 241 | inconsistent. |
| 242 | |
| 243 | * It has edge cases where the "right" behavior is unclear. Two examples: |
| 244 | |
| 245 | First, two users are in a subdirectory, and the first runs |
| 246 | git sparse-checkout set '/toplevel-dir/*.c' |
| 247 | while the second runs |
| 248 | git sparse-checkout set relative-dir |
| 249 | Should those arguments be transliterated into |
| 250 | current/subdirectory/toplevel-dir/*.c |
| 251 | and |
| 252 | current/subdirectory/relative-dir |
| 253 | before inserting into the sparse-checkout file? The user who typed |
| 254 | the first command is probably aware that arguments to set/add are |
| 255 | supposed to be patterns in non-cone mode, and probably would not be |
| 256 | happy with such a transliteration. However, many gitignore-style |
| 257 | patterns are just paths, which might be what the user who typed the |
| 258 | second command was thinking, and they'd be upset if their argument |
| 259 | wasn't transliterated. |
| 260 | |
| 261 | Second, what should bash-completion complete on for set/add commands |
| 262 | for non-cone users? If it suggests paths, is it exacerbating the |
| 263 | problem above? Also, if it suggests paths, what if the user has a |
| 264 | file or directory that begins with either a '!' or '#' or has a '*', |
| 265 | '\', '?', '[', or ']' in its name? And if it suggests paths, will |
| 266 | it complete "/pro" to "/proc" (in the root filesytem) rather than to |
| 267 | "/progress.txt" in the current directory? (Note that users are |
| 268 | likely to want to start paths with a leading '/' in non-cone mode, |
| 269 | for the same reason that .gitignore files often have one.) |
| 270 | Completing on files or directories might give nasty surprises in |
| 271 | all these cases. |
| 272 | |
| 273 | * The excessive flexibility made other extensions essentially |
| 274 | impractical. `--sparse-index` is likely impossible in non-cone |
| 275 | mode; even if it is somehow feasible, it would have been far more |
| 276 | work to implement and may have been too slow in practice. Some |
| 277 | ideas for adding coupling between partial clones and sparse |
| 278 | checkouts are only practical with a more restricted set of paths |
| 279 | as well. |
| 280 | |
| 281 | For all these reasons, non-cone mode is deprecated. Please switch to |
| 282 | using cone mode. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 283 | |
| 284 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 285 | INTERNALS -- CONE MODE HANDLING |
| 286 | ------------------------------- |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 287 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 288 | The "cone mode", which is the default, lets you specify only what |
| 289 | directories to include. For any directory specified, all paths below |
| 290 | that directory will be included, and any paths immediately under |
| 291 | leading directories (including the toplevel directory) will also be |
| 292 | included. Thus, if you specified the directory |
| 293 | Documentation/technical/ |
| 294 | then your sparse checkout would contain: |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 295 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 296 | * all files in the toplevel-directory |
| 297 | * all files immediately under Documentation/ |
| 298 | * all files at any depth under Documentation/technical/ |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 299 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 300 | Also, in cone mode, even if no directories are specified, then the |
| 301 | files in the toplevel directory will be included. |
| 302 | |
| 303 | When changing the sparse-checkout patterns in cone mode, Git will inspect each |
| 304 | tracked directory that is not within the sparse-checkout cone to see if it |
| 305 | contains any untracked files. If all of those files are ignored due to the |
| 306 | `.gitignore` patterns, then the directory will be deleted. If any of the |
| 307 | untracked files within that directory is not ignored, then no deletions will |
| 308 | occur within that directory and a warning message will appear. If these files |
| 309 | are important, then reset your sparse-checkout definition so they are included, |
| 310 | use `git add` and `git commit` to store them, then remove any remaining files |
| 311 | manually to ensure Git can behave optimally. |
| 312 | |
| 313 | See also the "Internals -- Cone Pattern Set" section to learn how the |
| 314 | directories are transformed under the hood into a subset of the |
| 315 | Full Pattern Set of sparse-checkout. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 316 | |
| 317 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 318 | INTERNALS -- FULL PATTERN SET |
| 319 | ----------------------------- |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 320 | |
| 321 | The full pattern set allows for arbitrary pattern matches and complicated |
| 322 | inclusion/exclusion rules. These can result in O(N*M) pattern matches when |
| 323 | updating the index, where N is the number of patterns and M is the number |
| 324 | of paths in the index. To combat this performance issue, a more restricted |
Junio C Hamano | fc6646b | 2020-02-14 23:35:16 | [diff] [blame] | 325 | pattern set is allowed when `core.sparseCheckoutCone` is enabled. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 326 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 327 | The sparse-checkout file uses the same syntax as `.gitignore` files; |
| 328 | see linkgit:gitignore[5] for details. Here, though, the patterns are |
| 329 | usually being used to select which files to include rather than which |
| 330 | files to exclude. (However, it can get a bit confusing since |
| 331 | gitignore-style patterns have negations defined by patterns which |
| 332 | begin with a '!', so you can also select files to _not_ include.) |
| 333 | |
| 334 | For example, to select everything, and then to remove the file |
| 335 | `unwanted` (so that every file will appear in your working tree except |
| 336 | the file named `unwanted`): |
| 337 | |
| 338 | git sparse-checkout set --no-cone '/*' '!unwanted' |
| 339 | |
| 340 | These patterns are just placed into the |
| 341 | `$GIT_DIR/info/sparse-checkout` as-is, so the contents of that file |
| 342 | at this point would be |
| 343 | |
| 344 | ---------------- |
| 345 | /* |
| 346 | !unwanted |
| 347 | ---------------- |
| 348 | |
| 349 | See also the "Sparse Checkout" section of linkgit:git-read-tree[1] to |
| 350 | learn more about the gitignore-style patterns used in sparse |
| 351 | checkouts. |
| 352 | |
| 353 | |
| 354 | INTERNALS -- CONE PATTERN SET |
| 355 | ----------------------------- |
| 356 | |
| 357 | In cone mode, only directories are accepted, but they are translated into |
| 358 | the same gitignore-style patterns used in the full pattern set. We refer |
| 359 | to the particular patterns used in those mode as being of one of two types: |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 360 | |
| 361 | 1. *Recursive:* All paths inside a directory are included. |
| 362 | |
| 363 | 2. *Parent:* All files immediately inside a directory are included. |
| 364 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 365 | Since cone mode always includes files at the toplevel, when running |
| 366 | `git sparse-checkout set` with no directories specified, the toplevel |
| 367 | directory is added as a parent pattern. At this point, the |
| 368 | sparse-checkout file contains the following patterns: |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 369 | |
| 370 | ---------------- |
| 371 | /* |
| 372 | !/*/ |
| 373 | ---------------- |
| 374 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 375 | This says "include everything immediately under the toplevel |
| 376 | directory, but nothing at any level below that." |
Junio C Hamano | fc6646b | 2020-02-14 23:35:16 | [diff] [blame] | 377 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 378 | When in cone mode, the `git sparse-checkout set` subcommand takes a |
| 379 | list of directories. The command `git sparse-checkout set A/B/C` sets |
| 380 | the directory `A/B/C` as a recursive pattern, the directories `A` and |
| 381 | `A/B` are added as parent patterns. The resulting sparse-checkout file |
| 382 | is now |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 383 | |
| 384 | ---------------- |
| 385 | /* |
| 386 | !/*/ |
| 387 | /A/ |
| 388 | !/A/*/ |
| 389 | /A/B/ |
| 390 | !/A/B/*/ |
| 391 | /A/B/C/ |
| 392 | ---------------- |
| 393 | |
| 394 | Here, order matters, so the negative patterns are overridden by the positive |
| 395 | patterns that appear lower in the file. |
| 396 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 397 | Unless `core.sparseCheckoutCone` is explicitly set to `false`, Git will |
| 398 | parse the sparse-checkout file expecting patterns of these types. Git will |
| 399 | warn if the patterns do not match. If the patterns do match the expected |
| 400 | format, then Git will use faster hash-based algorithms to compute inclusion |
| 401 | in the sparse-checkout. If they do not match, git will behave as though |
| 402 | `core.sparseCheckoutCone` was false, regardless of its setting. |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 403 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 404 | In the cone mode case, despite the fact that full patterns are written |
| 405 | to the $GIT_DIR/info/sparse-checkout file, the `git sparse-checkout |
| 406 | list` subcommand will list the directories that define the recursive |
| 407 | patterns. For the example sparse-checkout file above, the output is as |
| 408 | follows: |
Junio C Hamano | 6879384 | 2020-01-06 23:07:09 | [diff] [blame] | 409 | |
| 410 | -------------------------- |
| 411 | $ git sparse-checkout list |
| 412 | A/B/C |
| 413 | -------------------------- |
| 414 | |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 415 | If `core.ignoreCase=true`, then the pattern-matching algorithm will use a |
| 416 | case-insensitive check. This corrects for case mismatched filenames in the |
| 417 | 'git sparse-checkout set' command to reflect the expected cone in the working |
| 418 | directory. |
| 419 | |
Junio C Hamano | de44de3 | 2021-09-20 22:46:08 | [diff] [blame] | 420 | |
Junio C Hamano | c926f62 | 2022-06-03 22:26:23 | [diff] [blame] | 421 | INTERNALS -- SUBMODULES |
| 422 | ----------------------- |
Junio C Hamano | 6879384 | 2020-01-06 23:07:09 | [diff] [blame] | 423 | |
Junio C Hamano | 03e5f35 | 2020-06-22 23:59:49 | [diff] [blame] | 424 | If your repository contains one or more submodules, then submodules |
| 425 | are populated based on interactions with the `git submodule` command. |
| 426 | Specifically, `git submodule init -- <path>` will ensure the submodule |
| 427 | at `<path>` is present, while `git submodule deinit [-f] -- <path>` |
| 428 | will remove the files for the submodule at `<path>` (including any |
| 429 | untracked files, uncommitted changes, and unpushed history). Similar |
| 430 | to how sparse-checkout removes files from the working tree but still |
| 431 | leaves entries in the index, deinitialized submodules are removed from |
| 432 | the working directory but still have an entry in the index. |
| 433 | |
| 434 | Since submodules may have unpushed changes or untracked files, |
| 435 | removing them could result in data loss. Thus, changing sparse |
| 436 | inclusion/exclusion rules will not cause an already checked out |
| 437 | submodule to be removed from the working copy. Said another way, just |
| 438 | as `checkout` will not cause submodules to be automatically removed or |
| 439 | initialized even when switching between branches that remove or add |
| 440 | submodules, using `sparse-checkout` to reduce or expand the scope of |
| 441 | "interesting" files will not cause submodules to be automatically |
| 442 | deinitialized or initialized either. |
| 443 | |
| 444 | Further, the above facts mean that there are multiple reasons that |
| 445 | "tracked" files might not be present in the working copy: sparsity |
| 446 | pattern application from sparse-checkout, and submodule initialization |
| 447 | state. Thus, commands like `git grep` that work on tracked files in |
| 448 | the working copy may return results that are limited by either or both |
| 449 | of these restrictions. |
Junio C Hamano | 6879384 | 2020-01-06 23:07:09 | [diff] [blame] | 450 | |
| 451 | |
Junio C Hamano | 2f5a989 | 2019-12-25 21:12:55 | [diff] [blame] | 452 | SEE ALSO |
| 453 | -------- |
| 454 | |
| 455 | linkgit:git-read-tree[1] |
| 456 | linkgit:gitignore[5] |
| 457 | |
| 458 | GIT |
| 459 | --- |
| 460 | Part of the linkgit:git[1] suite |