Christian Couder <christian.couder@xxxxxxxxx> writes: > In version 3, the doc for the --filter-to option and the corresponding > gc.repackFilterTo config flag look like this: > > +--filter-to=<dir>:: > + Write the pack containing filtered out objects to the > + directory `<dir>`. Only useful with `--filter`. This can be > + used for putting the pack on a separate object directory that > + is accessed through the Git alternates mechanism. **WARNING:** > + If the packfile containing the filtered out objects is not > + accessible, the repo could be considered corrupt by Git as it "could be considered" -> "can become". > + migh not be able to access the objects in that packfile. See "migh" -> "might". > + the `objects` and `objects/info/alternates` sections of > + linkgit:gitrepository-layout[5]. > > +gc.repackFilterTo:: > + When repacking and using a filter, see `gc.repackFilter`, the > + specified location will be used to create the packfile > + containing the filtered out objects. **WARNING:** The > + specified location should be accessible, using for example the > + Git alternates mechanism, otherwise the repo could be > + considered corrupt by Git as it might not be able to access the > + objects in that packfile. See the `--filter-to=<dir>` option > + of linkgit:git-repack[1] and the `objects/info/alternates` > + section of linkgit:gitrepository-layout[5]. > > So they warn about possible issues with the feature and link to some > relevant doc. In all other parts of the system, we tend to avoid such an "unsafe by default" desgin, especially when the risk is known before there is an implementation, and instead allow an explicit end-user action (ranging from command line option to interactive confirmation) to opt-into more risky behaviour. Should we consider --filter-to as such an "always risky and prone to repository corruption" option (just like "--hard" to "reset" is always loses changes in the working tree without warning)? I am OK with that myself, but others may disagree. Come to think of it, we haven't seen much reviews from those other than Taylor. Are folks content with the direction this series is going in general? Thanks.