On Wed, Sep 08 2021, Johannes Schindelin via GitGitGadget wrote:
Changes since v2:
* Adjusted the description of the list command in the manual page , as
suggested by Bagas.
* Addressed two style nits in cmd_run().
* The documentation of git reconfigure -a was improved.
Changes since v1:
* A couple typos were fixed
* The code parsing the output of ls-remote was made more readable
* The indentation used in scalar.txt now consistently uses tabs
* We no longer hard-code core.bare = false when registering with Scalar
On Wed, Sep 8, 2021 at 12:24 PM Johannes Schindelin via GitGitGadget
[off-list ref] wrote:
From: Johannes Schindelin <redacted>
The idea of Scalar (https://github.com/microsoft/scalar), and before
that, of VFS for Git, has always been to prove that Git _can_ scale, and
to upstream whatever strategies have been demonstrated to help.
With this patch, we start the journey from that C# project to move what
is left to Git's own `contrib/` directory, reimplementing it in pure C,
with the intention to facilitate integrating the functionality into core
Git all while maintaining backwards-compatibility for existing Scalar
users (which will be much easier when both live in the same worktree).
It was always to plan to contribute all of the proven strategies back to
core Git.
s/always to plan/always the plan/
For example, while the virtual filesystem provided by VFS for Git helped
the team developing the Windows operating system to move onto Git, while
trying to upstream it we realized that it cannot be done: getting the
virtual filesystem to work (which we only managed to implement fully on
Windows, but not on, say, macOS or Linux), and the required server-side
support for the GVFS protocol, made this not quite feasible.
The Scalar project learned from that and tackled the problem with
different tactics: instead of pretending to Git that the working
directory is fully populated, it _specifically_ teaches Git about
partial clone (which is based on VFS for Git's cache server), about
sparse checkout (which VFS for Git tried to do transparently, in the
file system layer), and regularly runs maintenance tasks to keep the
repository in a healthy state.
With partial clone, sparse checkout and `git maintenance` having been
upstreamed, there is little left that `scalar.exe` does that which
`git.exe` cannot do. One such thing is that `scalar clone <url>` will
automatically set up a partial, sparse clone, and configure
known-helpful settings from the start.
s/does that which/does which/
quoted hunk
So let's bring this convenience into Git's tree.
The idea here is that you can (optionally) build Scalar via
make -C contrib/scalar/Makefile
This will build the `scalar` executable and put it into the
contrib/scalar/ subdirectory.
The slightly awkward addition of the `contrib/scalar/*` bits to the
top-level `Makefile` are actually really required: we want to link to
`libgit.a`, which means that we will need to use the very same `CFLAGS`
and `LDFLAGS` as the rest of Git.
An early development version of this patch tried to replicate all the
conditional code in `contrib/scalar/Makefile` (e.g. `NO_POLL`) just like
`contrib/svn-fe/Makefile` used to do before it was retired. It turned
out to be quite the whack-a-mole game: the SHA-1-related flags, the
flags enabling/disabling `compat/poll/`, `compat/regex/`,
`compat/win32mmap.c` & friends depending on the current platform... To
put it mildly: it was a major mess.
Instead, this patch makes minimal changes to the top-level `Makefile` so
that the bits in `contrib/scalar/` can be compiled and linked, and
adds a `contrib/scalar/Makefile` that uses the top-level `Makefile` in a
most minimal way to do the actual compiling.
Note: With this commit, we only establish the infrastructure, no
Scalar functionality is implemented yet; We will do that incrementally
over the next few commits.
Signed-off-by: Johannes Schindelin <redacted>
---
Makefile | 8 ++++++++
contrib/scalar/.gitignore | 2 ++
contrib/scalar/Makefile | 34 ++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.c | 36 ++++++++++++++++++++++++++++++++++++
4 files changed, 80 insertions(+)
create mode 100644 contrib/scalar/.gitignore
create mode 100644 contrib/scalar/Makefile
create mode 100644 contrib/scalar/scalar.c
@@ -0,0 +1,34 @@+QUIET_SUBDIR0=+$(MAKE)-C# space to separate -C and subdir+QUIET_SUBDIR1=++ifneq ($(findstring s,$(MAKEFLAGS)),s)+ifndef V+QUIET_SUBDIR0=+@subdir=+QUIET_SUBDIR1=;$(NO_SUBDIR)echo' 'SUBDIR$$subdir;\+$(MAKE)$(PRINT_DIR)-C$$subdir+else+exportV+endif+endif++all:++include ../../config.mak.uname+-include ../../config.mak.autogen+-include ../../config.mak++TARGETS=scalar$(X)scalar.o+GITLIBS=../../common-main.o../../libgit.a../../xdiff/lib.a++all:scalar$X++$(GITLIBS):+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(subst../../,,$@)++$(TARGETS):$(GITLIBS)scalar.c+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(patsubst%,contrib/scalar/%,$@)++clean:+$(RM)$(TARGETS)++.PHONY:allcleanFORCE
From: Johannes Schindelin <hidden> Date: 2021-09-13 13:34:55
Hi Elijah,
On Thu, 9 Sep 2021, Elijah Newren wrote:
On Wed, Sep 8, 2021 at 12:24 PM Johannes Schindelin via GitGitGadget
[off-list ref] wrote:
quoted
From: Johannes Schindelin <redacted>
The idea of Scalar (https://github.com/microsoft/scalar), and before
that, of VFS for Git, has always been to prove that Git _can_ scale, and
to upstream whatever strategies have been demonstrated to help.
With this patch, we start the journey from that C# project to move what
is left to Git's own `contrib/` directory, reimplementing it in pure C,
with the intention to facilitate integrating the functionality into core
Git all while maintaining backwards-compatibility for existing Scalar
users (which will be much easier when both live in the same worktree).
It was always to plan to contribute all of the proven strategies back to
core Git.
s/always to plan/always the plan/
quoted
For example, while the virtual filesystem provided by VFS for Git helped
the team developing the Windows operating system to move onto Git, while
trying to upstream it we realized that it cannot be done: getting the
virtual filesystem to work (which we only managed to implement fully on
Windows, but not on, say, macOS or Linux), and the required server-side
support for the GVFS protocol, made this not quite feasible.
The Scalar project learned from that and tackled the problem with
different tactics: instead of pretending to Git that the working
directory is fully populated, it _specifically_ teaches Git about
partial clone (which is based on VFS for Git's cache server), about
sparse checkout (which VFS for Git tried to do transparently, in the
file system layer), and regularly runs maintenance tasks to keep the
repository in a healthy state.
With partial clone, sparse checkout and `git maintenance` having been
upstreamed, there is little left that `scalar.exe` does that which
`git.exe` cannot do. One such thing is that `scalar clone <url>` will
automatically set up a partial, sparse clone, and configure
known-helpful settings from the start.
s/does that which/does which/
Thank you!
I am holding off from sending a new iteration (with the suggested fixes)
until tomorrow, waiting for more suggestions to trickle in.
Thanks,
Dscho
quoted
So let's bring this convenience into Git's tree.
The idea here is that you can (optionally) build Scalar via
make -C contrib/scalar/Makefile
This will build the `scalar` executable and put it into the
contrib/scalar/ subdirectory.
The slightly awkward addition of the `contrib/scalar/*` bits to the
top-level `Makefile` are actually really required: we want to link to
`libgit.a`, which means that we will need to use the very same `CFLAGS`
and `LDFLAGS` as the rest of Git.
An early development version of this patch tried to replicate all the
conditional code in `contrib/scalar/Makefile` (e.g. `NO_POLL`) just like
`contrib/svn-fe/Makefile` used to do before it was retired. It turned
out to be quite the whack-a-mole game: the SHA-1-related flags, the
flags enabling/disabling `compat/poll/`, `compat/regex/`,
`compat/win32mmap.c` & friends depending on the current platform... To
put it mildly: it was a major mess.
Instead, this patch makes minimal changes to the top-level `Makefile` so
that the bits in `contrib/scalar/` can be compiled and linked, and
adds a `contrib/scalar/Makefile` that uses the top-level `Makefile` in a
most minimal way to do the actual compiling.
Note: With this commit, we only establish the infrastructure, no
Scalar functionality is implemented yet; We will do that incrementally
over the next few commits.
Signed-off-by: Johannes Schindelin <redacted>
---
Makefile | 8 ++++++++
contrib/scalar/.gitignore | 2 ++
contrib/scalar/Makefile | 34 ++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.c | 36 ++++++++++++++++++++++++++++++++++++
4 files changed, 80 insertions(+)
create mode 100644 contrib/scalar/.gitignore
create mode 100644 contrib/scalar/Makefile
create mode 100644 contrib/scalar/scalar.c
@@ -0,0 +1,34 @@+QUIET_SUBDIR0=+$(MAKE)-C# space to separate -C and subdir+QUIET_SUBDIR1=++ifneq ($(findstring s,$(MAKEFLAGS)),s)+ifndef V+QUIET_SUBDIR0=+@subdir=+QUIET_SUBDIR1=;$(NO_SUBDIR)echo' 'SUBDIR$$subdir;\+$(MAKE)$(PRINT_DIR)-C$$subdir+else+exportV+endif+endif++all:++include ../../config.mak.uname+-include ../../config.mak.autogen+-include ../../config.mak++TARGETS=scalar$(X)scalar.o+GITLIBS=../../common-main.o../../libgit.a../../xdiff/lib.a++all:scalar$X++$(GITLIBS):+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(subst../../,,$@)++$(TARGETS):$(GITLIBS)scalar.c+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(patsubst%,contrib/scalar/%,$@)++clean:+$(RM)$(TARGETS)++.PHONY:allcleanFORCE
On Thu, Sep 09 2021, Ævar Arnfjörð Bjarmason wrote:
On Wed, Sep 08 2021, Johannes Schindelin via GitGitGadget wrote:
quoted
Changes since v2:
* Adjusted the description of the list command in the manual page , as
suggested by Bagas.
* Addressed two style nits in cmd_run().
* The documentation of git reconfigure -a was improved.
Changes since v1:
* A couple typos were fixed
* The code parsing the output of ls-remote was made more readable
* The indentation used in scalar.txt now consistently uses tabs
* We no longer hard-code core.bare = false when registering with Scalar
Seeing [1] about the planned re-roll I have the above a shot a few days
ago, see the original discussion at [2] (indirectly linked above).
The dependency graph isn't quite there yet, but I basically had it
working (some twiddling around adding a new top-level command name
needed). Result:
.gitignore | 1 +
Documentation/Makefile | 4 ++++
Makefile | 27 +++++++++++++++++++++++++++
3 files changed, 32 insertions(+)
And by comparison, your v3:
Makefile | 8 +++++
contrib/scalar/.gitignore | 5 +++
contrib/scalar/Makefile | 57 ++++++++++++++++++++++++++++++++++
contrib/scalar/t/Makefile | 78 +++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 148 insertions(+)
So that's a very pleasing reduction in complexity.
The WIP change for that is below, some oddities like the
s/scalarscalar/scalar/ (couldn't find the bit that generated that
built-in blurb at the time).
But for one the automatic lint integration in Documentation/ found one
nit, and "make test" etc. all work with this automatically.
All guarded behind a CONTRIB_SCALAR flag, so the end result isn't in any
way different.
Again, as pointed out in [2] the proposal isn't in any way to change
what an end user sees, just to make our build system less
complex. Stretching dependency graphs across Makefiles is a pain.
So just as an example I was improving the "sparse" and "hdr-check"
targets today, with this dropped into the main Makefile under a flag
stuff like that will Just Work, if it's under its own Makefile
infrastructure it'll need to be treated specially for every such change,
ditto "make TAGS" etc.
1. http://lore.kernel.org/git/nycvar.QRO.7.76.6.2109131531210.55@tvgsbejvaqbjf.bet;
2. https://lore.kernel.org/git/87mtoxwt63.fsf@evledraar.gmail.com/
@@ -19,6 +19,10 @@ MAN1_TXT += git.txtMAN1_TXT+=gitk.txtMAN1_TXT+=gitweb.txt+ifdef CONTRIB_SCALAR+MAN1_TXT+=scalar.txt+endif+# man5 / man7 guides (note: new guides should also be added to command-list.txt)MAN5_TXT+=gitattributes.txtMAN5_TXT+=githooks.txt
@@ -691,10 +692,17 @@ PROGRAM_OBJS += shell.o.PHONY:program-objsprogram-objs:$(PROGRAM_OBJS)+ifdef CONTRIB_SCALAR+NONGIT_PROGRAM_OBJS+=scalar.o+endif+.PHONY:nongit-program-objs+nongit-program-objs:$(NONGIT_PROGRAM_OBJS)+# Binary suffix, set to .exe for Windows buildsX=PROGRAMS+=$(patsubst%.o,git-%$X,$(PROGRAM_OBJS))+PROGRAMS+=$(patsubst%.o,%$X,$(NONGIT_PROGRAM_OBJS))TEST_BUILTINS_OBJS+=test-advise.oTEST_BUILTINS_OBJS+=test-bitmap.o
From: Johannes Schindelin <hidden> Date: 2021-09-13 20:53:33
Hi Ævar,
On Mon, 13 Sep 2021, Ævar Arnfjörð Bjarmason wrote:
On Thu, Sep 09 2021, Ævar Arnfjörð Bjarmason wrote:
quoted
On Wed, Sep 08 2021, Johannes Schindelin via GitGitGadget wrote:
quoted
Changes since v2:
* Adjusted the description of the list command in the manual page , as
suggested by Bagas.
* Addressed two style nits in cmd_run().
* The documentation of git reconfigure -a was improved.
Changes since v1:
* A couple typos were fixed
* The code parsing the output of ls-remote was made more readable
* The indentation used in scalar.txt now consistently uses tabs
* We no longer hard-code core.bare = false when registering with Scalar
Seeing [1] about the planned re-roll I have the above a shot a few days
ago, see the original discussion at [2] (indirectly linked above).
There is a good reason why I did not engage in that tangent about
deviating from the established `contrib/*/Makefile` paradigm: I find it
particularly unrelated to what this here patch series is trying to
accomplish, and I cannot bring myself to be interested in the proposed
build system changes, either, because I do not see any benefit in the
changes, only downsides.
I find the distraction unnecessary.
Besides, the way I designed it, the code in `contrib/scalar/` intrudes as
little as possible on the core Git build system. The impact on the
top-level `Makefile` is quite minimal, which is just the way I firmly
believe it should be.
In short: I do not want those intrusive changes to the top-level
`Makefile`, not in this patch series, and not as a follow-up, either.
We have much bigger fries to fry: namely, how to migrate the improvements
for large-scale operations from Scalar to core Git, so that all Git users
can benefit. Granted, it will take a lot effort, and it would be easier to
move around `Makefile` rules instead. But ultimately, the benefit of
allowing users to handle larger repositories with ease will be worth that
effort.
Ciao,
Johannes
Aside from anything else we may disagree with about the build system
integration, this breaks the "objects" target. You're adding things to
it, but it won't be reflected by those changes.
I have this fixup for it on top locally, the reference to 852ec00310 is
to a commit in your repo:
-- >8 --
Makefile: fix scalar "make objects" regression
In 852ec00310 (scalar: create a rudimentary executable, 2021-04-10)
the contrib/scalar/scalar.o file was added to OBJECTS, but was added
below the "objects" target.
That target was added in 029bac01a8 (Makefile: add
{program,xdiff,test,git,fuzz}-objs & objects targets, 2021-02-23)
along with others (git-objs, test-objs) to serve as ad-hoc targets for
e.g. compiling during interactive the targets need to come after we
fully declare the variable.
Before this change we'd still do /some/ scalar things on "make
objects", namely create the contrib/scalar/.depend/ directory (see
dep_dirs in the context), we just wouldn't create the object itself.
Signed-off-by: Ævar Arnfjörð Bjarmason <redacted>
---
Makefile | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
Hi Ævar,
On Mon, 13 Sep 2021, Ævar Arnfjörð Bjarmason wrote:
quoted
On Thu, Sep 09 2021, Ævar Arnfjörð Bjarmason wrote:
quoted
On Wed, Sep 08 2021, Johannes Schindelin via GitGitGadget wrote:
quoted
Changes since v2:
* Adjusted the description of the list command in the manual page , as
suggested by Bagas.
* Addressed two style nits in cmd_run().
* The documentation of git reconfigure -a was improved.
Changes since v1:
* A couple typos were fixed
* The code parsing the output of ls-remote was made more readable
* The indentation used in scalar.txt now consistently uses tabs
* We no longer hard-code core.bare = false when registering with Scalar
Seeing [1] about the planned re-roll I have the above a shot a few days
ago, see the original discussion at [2] (indirectly linked above).
There is a good reason why I did not engage in that tangent about
deviating from the established `contrib/*/Makefile` paradigm: I find it
particularly unrelated to what this here patch series is trying to
accomplish, and I cannot bring myself to be interested in the proposed
build system changes, either, because I do not see any benefit in the
changes, only downsides.
I find the distraction unnecessary.
Perhaps I'm reading too much between the lines here, so forgive any
undue knee-jerk reaction.
But aside from any technical disagreement we may have I find this way of
handling reviews quite disrespectful of other people's time.
Sure, maybe I'm wrong, and maybe you either don't see any value in the
proposed changes or maybe they're just bad suggestions.
I still took the time to review and comment on a series you're
submitting. I think the least you can do is to include some comment in a
re-roll like:
Skimmed Ævar's proposal about an alternate build system
implementation, sorry, I just don't think it's worth it, going to
not change anything there.
Which would be fair enough, and would leave the ball in my court in
terms of either dropping it, submitting any patch on top etc.
As opposed to just ignoring that whole thread, leaving both me wondering
if it's even been seen (and sending a few reminders like the linked
upthread), as well as others trying to track the state of the series.
Besides, the way I designed it, the code in `contrib/scalar/` intrudes as
little as possible on the core Git build system. The impact on the
top-level `Makefile` is quite minimal, which is just the way I firmly
believe it should be.
In short: I do not want those intrusive changes to the top-level
`Makefile`, not in this patch series, and not as a follow-up, either.
Communication grievances aside:
* Saying that we have an "established `contrib/*/Makefile` paradigm"
doesn't really follow in this case. Most of that isn't C code, and
the bits that are C code are not using libgit.a.
And as I've argued elsewhere I think that whole pattern was a mistake
in the first place, it makes inter-Makefile dependencies a pain to
manage, has resulted in bitrot of things like git-subtree.sh and
mw-to-git, all because we conflate whether we want to build/test
things with what we'd like in a default installation.
* Because of that any number of targets / workflows in the Makefile
aren't going to work by default, e.g. try checking it out and doing
"make TAGS".
That specific one happens to because we exclude contrib explicitly,
that could be fixed, but there's going to be any number of things
like that, but current and future ones.
* One target that seems missing (maybe I've somehow missed it) is any
support for installing the build command, its docs etc.
* I hacked a bit more on this today and came up with a not-quite-ready
change that both for the Makefile and Documentation/Makefile will
build scalar.c like any other top-level command, and we'll always get
a bin-wrapper/scalar, we'll only do something different at "install"
time.
This means that just like the "all:: $(FUZZ_OBJS)" we'll always build
a scalar.o, so that'll prevent others from e.g. breaking a library
function you rely on (which'll only be annoying caught in CI, or
integration or whatever).
* I think it's fair to say that whatever one thinks of my argument,
your [1] leaves the reader hanging about *why* you went for this
"make -C contrib/scalar/Makefile".
As summarized there you tried to have it completely separate, but
failed.
So now there's a bit of integration in the top-level Makefile
already. But why try in the first place? Just slavish conformance to
existing "contrib/" convention?
The dependency back on assets in subdirs there is deep, so surely
it's not to build this independently somehow.
We have much bigger fries to fry: namely, how to migrate the improvements
for large-scale operations from Scalar to core Git, so that all Git users
can benefit. Granted, it will take a lot effort, and it would be easier to
move around `Makefile` rules instead. But ultimately, the benefit of
allowing users to handle larger repositories with ease will be worth that
effort.
It's your implementation that requires mostly moving around / copying
Makefile rules, if you piggy-back on the existing Makefile rules you'll
get most of the behavior you've duplicated for free without any moving
or copying.
But in any case, re the last bullet point above and your "[...]and not
as a follow-up, either" comments it's not clear whether you're saying
that you don't have time to work on this, or that you wouldn't want it
at all in any shape or form, even if someone else did it.
Which is not to say that I'm promising to do so even if that's the case,
I do think the onus is on the person proposing the change, and to take
productive feedback about things that are introducing unnecessary
complexity, and won't saddle others with undue technical debt going
forward.
1. https://lore.kernel.org/git/b8c7d3f84508ae0fb300f47c726764f4cbf46be9.1631129086.git.gitgitgadget@gmail.com/
Seeing [1] about the planned re-roll I have the above a shot a few
days ago, see the original discussion at [2] (indirectly linked
above).
There is a good reason why I did not engage in that tangent about
deviating from the established `contrib/*/Makefile` paradigm: I find
it particularly unrelated to what this here patch series is trying to
accomplish, and I cannot bring myself to be interested in the proposed
build system changes, either, because I do not see any benefit in the
changes, only downsides.
I find the distraction unnecessary.
Perhaps I'm reading too much between the lines here, so forgive any
undue knee-jerk reaction.
Okay, let's try an analogy.
Imagine that a person is asking for directions to the train station. And
the other person is replying by asking "did you know that this train
station was built in 1878? It is actually quite interesting a story...
[and then goes on to describe the history and what excites them about
it]". Now, the first person tries again to ask for directions, again does
not get an answer to that question, and is slowly starting to look at
their watch. The second person, being completely oblivious to all of this,
goes on with their wonderful story about the train station and its
cultural heritage. So the first person walks a bit further to ask a third
person, but the second person is not done yet and says "but you haven't
heard me out! That's disrespectful!".
Just imagine for a minute how you would feel if you were the first person.
And that is how I feel asking for reviews about the Scalar patch series
and then being forcefully dragged into that tangent about the build
process.
I find the well-established paradigm to keep contrib/'s build procedures
as confined to their own directory as possible the most reasonable way to
handle the build by virtue of _not_ polluting the top-level Makefile
unnecessarily. All of your objections strike me simply as personal
viewpoints, not as technical arguments, and they fail to address this
"pollution of the top-level Makefile" problem. I therefore strongly
disagree with your suggestion that the build system should be changed, I
would even argue that your suggestion should been dismissed on purely
technical grounds, and I wish you hadn't forced me to say this as
forcefully.
And even if I looked more favorably on your suggestion to change the build
procedure, I find this distraction about the build as little constructive
as the explanations about the train station's history above. Those
suggestions do succeed in derailing the conversation about how Git could
scale better, how Scalar _does_ teach Git how to scale better, and about
how to teach Git itself more and more of Scalar's tricks.
If you have ideas how to teach, say, `git clone` to perform a couple of
Scalar's tricks, by all means, let's hear them, or even better, let's see
those patches. If you want to change the build system, still, I cannot
stop you from sending patches to that end to the Git mailing list, but
please expect me to be uninterested in them in any way, and to prefer to
spend my efforts to improve Git elsewhere. If you have other ideas how to
improve on Scalar in a user-perceptible way, however, I am all ears again.
I hope this clarifies it, without the need to read between the lines,
Johannes
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:43:30
From: Johannes Schindelin <redacted>
The idea of Scalar (https://github.com/microsoft/scalar), and before
that, of VFS for Git, has always been to prove that Git _can_ scale, and
to upstream whatever strategies have been demonstrated to help.
With this patch, we start the journey from that C# project to move what
is left to Git's own `contrib/` directory, reimplementing it in pure C,
with the intention to facilitate integrating the functionality into core
Git all while maintaining backwards-compatibility for existing Scalar
users (which will be much easier when both live in the same worktree).
It has always been the plan to contribute all of the proven strategies
back to core Git.
For example, while the virtual filesystem provided by VFS for Git helped
the team developing the Windows operating system to move onto Git, while
trying to upstream it we realized that it cannot be done: getting the
virtual filesystem to work (which we only managed to implement fully on
Windows, but not on, say, macOS or Linux), and the required server-side
support for the GVFS protocol, made this not quite feasible.
The Scalar project learned from that and tackled the problem with
different tactics: instead of pretending to Git that the working
directory is fully populated, it _specifically_ teaches Git about
partial clone (which is based on VFS for Git's cache server), about
sparse checkout (which VFS for Git tried to do transparently, in the
file system layer), and regularly runs maintenance tasks to keep the
repository in a healthy state.
With partial clone, sparse checkout and `git maintenance` having been
upstreamed, there is little left that `scalar.exe` does which `git.exe`
cannot do. One such thing is that `scalar clone <url>` will
automatically set up a partial, sparse clone, and configure
known-helpful settings from the start.
So let's bring this convenience into Git's tree.
The idea here is that you can (optionally) build Scalar via
make -C contrib/scalar/Makefile
This will build the `scalar` executable and put it into the
contrib/scalar/ subdirectory.
The slightly awkward addition of the `contrib/scalar/*` bits to the
top-level `Makefile` are actually really required: we want to link to
`libgit.a`, which means that we will need to use the very same `CFLAGS`
and `LDFLAGS` as the rest of Git.
An early development version of this patch tried to replicate all the
conditional code in `contrib/scalar/Makefile` (e.g. `NO_POLL`) just like
`contrib/svn-fe/Makefile` used to do before it was retired. It turned
out to be quite the whack-a-mole game: the SHA-1-related flags, the
flags enabling/disabling `compat/poll/`, `compat/regex/`,
`compat/win32mmap.c` & friends depending on the current platform... To
put it mildly: it was a major mess.
Instead, this patch makes minimal changes to the top-level `Makefile` so
that the bits in `contrib/scalar/` can be compiled and linked, and
adds a `contrib/scalar/Makefile` that uses the top-level `Makefile` in a
most minimal way to do the actual compiling.
Note: With this commit, we only establish the infrastructure, no
Scalar functionality is implemented yet; We will do that incrementally
over the next few commits.
Signed-off-by: Johannes Schindelin <redacted>
---
Makefile | 8 ++++++++
contrib/scalar/.gitignore | 2 ++
contrib/scalar/Makefile | 34 ++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.c | 36 ++++++++++++++++++++++++++++++++++++
4 files changed, 80 insertions(+)
create mode 100644 contrib/scalar/.gitignore
create mode 100644 contrib/scalar/Makefile
create mode 100644 contrib/scalar/scalar.c
@@ -0,0 +1,34 @@+QUIET_SUBDIR0=+$(MAKE)-C# space to separate -C and subdir+QUIET_SUBDIR1=++ifneq ($(findstring s,$(MAKEFLAGS)),s)+ifndef V+QUIET_SUBDIR0=+@subdir=+QUIET_SUBDIR1=;$(NO_SUBDIR)echo' 'SUBDIR$$subdir;\+$(MAKE)$(PRINT_DIR)-C$$subdir+else+exportV+endif+endif++all:++include ../../config.mak.uname+-include ../../config.mak.autogen+-include ../../config.mak++TARGETS=scalar$(X)scalar.o+GITLIBS=../../common-main.o../../libgit.a../../xdiff/lib.a++all:scalar$X++$(GITLIBS):+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(subst../../,,$@)++$(TARGETS):$(GITLIBS)scalar.c+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(patsubst%,contrib/scalar/%,$@)++clean:+$(RM)$(TARGETS)++.PHONY:allcleanFORCE
@@ -30,5 +31,16 @@ $(TARGETS): $(GITLIBS) scalar.cclean:$(RM)$(TARGETS)+$(RM)scalar.1scalar.htmlscalar.xml-.PHONY:allcleanFORCE+docs:scalar.htmlscalar.1++scalar.html:|scalar.1 # prevent them from trying to build `doc.dep` in parallel++scalar.html scalar.1:scalar.txt+$(QUIET_SUBDIR0)../../Documentation$(QUIET_SUBDIR1)\+MAN_TXT=../contrib/scalar/scalar.txt\+../contrib/scalar/$@+$(QUIET)testscalar.1!="$@"||mv../../Documentation/$@.++.PHONY:allcleandocsFORCE
@@ -0,0 +1,38 @@+scalar(1)+=========++NAME+----+scalar - an opinionated repository management tool++SYNOPSIS+--------+[verse]+scalar <command> [<options>]++DESCRIPTION+-----------++Scalar is an opinionated repository management tool. By creating new+repositories or registering existing repositories with Scalar, your Git+experience will speed up. Scalar sets advanced Git config settings,+maintains your repositories in the background, and helps reduce data sent+across the network.++An important Scalar concept is the enlistment: this is the top-level directory+of the project. It usually contains the subdirectory `src/` which is a Git+worktree. This encourages the separation between tracked files (inside `src/`)+and untracked files, such as build artifacts (outside `src/`). When registering+an existing Git worktree with Scalar whose name is not `src`, the enlistment+will be identical to the worktree.++The `scalar` command implements various subcommands, and different options+depending on the subcommand.++SEE ALSO+--------+linkgit:git-maintenance[1].++Scalar+---+Associated with the linkgit:git[1] suite
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:43:33
From: Johannes Schindelin <redacted>
To test the Scalar command, create a test script in contrib/scalar/t
that is executed as `make -C contrib/scalar test`. Since Scalar has no
meaningful capabilities yet, the only test is rather simple. We will add
more tests in subsequent commits that introduce corresponding, new
functionality.
Note: this test script is intended to test `scalar` only lightly, even
after all of the functionality is implemented.
A more comprehensive functional (or: integration) test suite can be
found at https://github.com/microsoft/scalar; It is used in the workflow
https://github.com/microsoft/git/blob/HEAD/.github/workflows/scalar-functional-tests.yml
in Microsoft's Git fork. This test suite performs end-to-end tests with
a real remote repository, and is run as part of the regular CI builds.
Since those tests require some functionality supported only by
Microsoft's Git fork ("GVFS protocol"), there is no intention to port
that fuller test suite to `contrib/scalar/`.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/Makefile | 17 +++++--
contrib/scalar/t/Makefile | 78 ++++++++++++++++++++++++++++++++
contrib/scalar/t/t9099-scalar.sh | 17 +++++++
3 files changed, 109 insertions(+), 3 deletions(-)
create mode 100644 contrib/scalar/t/Makefile
create mode 100755 contrib/scalar/t/t9099-scalar.sh
@@ -21,7 +22,7 @@ include ../../config.mak.unameTARGETS=scalar$(X)scalar.oGITLIBS=../../common-main.o../../libgit.a../../xdiff/lib.a-all:scalar$X+all:scalar$X ../../bin-wrappers/scalar$(GITLIBS):$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(subst../../,,$@)
@@ -30,9 +31,19 @@ $(TARGETS): $(GITLIBS) scalar.c$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(patsubst%,contrib/scalar/%,$@)clean:-$(RM)$(TARGETS)+$(RM)$(TARGETS)../../bin-wrappers/scalar$(RM)scalar.1scalar.htmlscalar.xml+../../bin-wrappers/scalar:../../wrap-for-bin.shMakefile+@mkdir-p../../bin-wrappers+$(QUIET_GEN)sed-e'1s|#!.*/sh|#!$(SHELL_PATH_SQ)|'\+-e's|@@BUILD_DIR@@|$(shell cd ../.. && pwd)|'\+-e's|@@PROG@@|contrib/scalar/scalar$(X)|'<$<>$@&&\+chmod+x$@++test:all+$(MAKE)-Ct+docs:scalar.htmlscalar.1scalar.html:|scalar.1 # prevent them from trying to build `doc.dep` in parallel
@@ -0,0 +1,17 @@+#!/bin/sh++test_description='test the `scalar` command'++TEST_DIRECTORY=$PWD/../../../t+exportTEST_DIRECTORY++# Make it work with --no-bin-wrappers+PATH=$PWD/..:$PATH++.../../../t/test-lib.sh++test_expect_success'scalar shows a usage''+test_expect_code129scalar-h+'++test_done
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-09-14 14:43:37
From: Derrick Stolee <redacted>
Let's start implementing the `register` command. With this commit,
recommended settings are configured upon `scalar register`, and Git's
background maintenance is started.
The recommended config settings may very well change in the future. For
example, once the built-in FSMonitor is available, we will want to
enable it upon `scalar register`. For that reason, we explicitly support
running `scalar register` in an already-registered enlistment.
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 255 ++++++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 18 ++-
2 files changed, 272 insertions(+), 1 deletion(-)
@@ -5,11 +5,266 @@#include"cache.h"#include"gettext.h"#include"parse-options.h"+#include"config.h"+#include"run-command.h"++/*+*Removethedeepestsubdirectoryintheprovidedpathstring.Pathmustnot+*includeatrailingpathseparator.Returns1ifparentdirectoryfound,+*otherwise0.+*/+staticintstrbuf_parent_directory(structstrbuf*buf)+{+size_tlen=buf->len;+size_toffset=offset_1st_component(buf->buf);+char*path_sep=find_last_dir_sep(buf->buf+offset);+strbuf_setlen(buf,path_sep?path_sep-buf->buf:offset);++returnbuf->len<len;+}++staticvoidsetup_enlistment_directory(intargc,constchar**argv,+constchar*const*usagestr,+conststructoption*options,+structstrbuf*enlistment_root)+{+structstrbufpath=STRBUF_INIT;+char*root;+intenlistment_found=0;++if(startup_info->have_repository)+BUG("gitdir already set up?!?");++if(argc>1)+usage_with_options(usagestr,options);++/* find the worktree, determine its corresponding root */+if(argc==1)+strbuf_add_absolute_path(&path,argv[0]);+elseif(strbuf_getcwd(&path)<0)+die(_("need a working directory"));++strbuf_trim_trailing_dir_sep(&path);+do{+constsize_tlen=path.len;++/* check if currently in enlistment root with src/ workdir */+strbuf_addstr(&path,"/src/.git");+if(is_git_directory(path.buf)){+strbuf_strip_suffix(&path,"/.git");++if(enlistment_root)+strbuf_add(enlistment_root,path.buf,len);++enlistment_found=1;+break;+}++/* reset to original path */+strbuf_setlen(&path,len);++/* check if currently in workdir */+strbuf_addstr(&path,"/.git");+if(is_git_directory(path.buf)){+strbuf_setlen(&path,len);++if(enlistment_root){+/*+*Iftheworktree'sdirectory'snameis`src`,theenlistmentisthe+*parentdirectory,otherwiseitisidenticaltotheworktree.+*/+root=strip_path_suffix(path.buf,"src");+strbuf_addstr(enlistment_root,root?root:path.buf);+free(root);+}++enlistment_found=1;+break;+}++strbuf_setlen(&path,len);+}while(strbuf_parent_directory(&path));++if(!enlistment_found)+die(_("could not find enlistment root"));++if(chdir(path.buf)<0)+die_errno(_("could not switch to '%s'"),path.buf);++strbuf_release(&path);+setup_git_directory();+}++staticintrun_git(constchar*arg,...)+{+structstrvecargv=STRVEC_INIT;+va_listargs;+constchar*p;+intres;++va_start(args,arg);+strvec_push(&argv,arg);+while((p=va_arg(args,constchar*)))+strvec_push(&argv,p);+va_end(args);++res=run_command_v_opt(argv.v,RUN_GIT_CMD);++strvec_clear(&argv);+returnres;+}++staticintset_recommended_config(void)+{+struct{+constchar*key;+constchar*value;+}config[]={+{"am.keepCR","true"},+{"core.FSCache","true"},+{"core.multiPackIndex","true"},+{"core.preloadIndex","true"},+#ifndef WIN32+{"core.untrackedCache","true"},+#else+/*+*Unfortunately,Scalar'sFunctionalTestsdemonstrated+*thattheuntrackedcachefeatureisunreliableonWindows+*(whichisabummerbecausethatplatformwouldbenefitthe+*mostfromit).Forsomereason,freshlycreatedfilesseem+*nottoupdatethedirectory's`lastModified`time+*immediately,buttheuntrackedcachewouldneedtorelyon+*that.+*+*Therefore,withasadheart,wedisablethisveryuseful+*featureonWindows.+*/+{"core.untrackedCache","false"},+#endif+{"core.logAllRefUpdates","true"},+{"credential.https://dev.azure.com.useHttpPath","true"},+{"credential.validate","false"},/* GCM4W-only */+{"gc.auto","0"},+{"gui.GCWarning","false"},+{"index.threads","true"},+{"index.version","4"},+{"merge.stat","false"},+{"merge.renames","false"},+{"pack.useBitmaps","false"},+{"pack.useSparse","true"},+{"receive.autoGC","false"},+{"reset.quiet","true"},+{"feature.manyFiles","false"},+{"feature.experimental","false"},+{"fetch.unpackLimit","1"},+{"fetch.writeCommitGraph","false"},+#ifdef WIN32+{"http.sslBackend","schannel"},+#endif+{"status.aheadBehind","false"},+{"commitGraph.generationVersion","1"},+{"core.autoCRLF","false"},+{"core.safeCRLF","false"},+{NULL,NULL},+};+inti;+char*value;++for(i=0;config[i].key;i++){+if(git_config_get_string(config[i].key,&value)){+trace2_data_string("scalar",the_repository,config[i].key,"created");+if(git_config_set_gently(config[i].key,+config[i].value)<0)+returnerror(_("could not configure %s=%s"),+config[i].key,config[i].value);+}else{+trace2_data_string("scalar",the_repository,config[i].key,"exists");+free(value);+}+}++/*+*The`log.excludeDecoration`settingisspecialbecauseitallows+*formultiplevalues.+*/+if(git_config_get_string("log.excludeDecoration",&value)){+trace2_data_string("scalar",the_repository,+"log.excludeDecoration","created");+if(git_config_set_multivar_gently("log.excludeDecoration",+"refs/prefetch/*",+CONFIG_REGEX_NONE,0))+returnerror(_("could not configure "+"log.excludeDecoration"));+}else{+trace2_data_string("scalar",the_repository,+"log.excludeDecoration","exists");+free(value);+}++return0;+}++staticintstart_maintenance(void)+{+returnrun_git("maintenance","start",NULL);+}++staticintadd_enlistment(void)+{+intres;++if(!the_repository->worktree)+die(_("Scalar enlistments require a worktree"));++res=run_git("config","--global","--get","--fixed-value",+"scalar.repo",the_repository->worktree,NULL);++/*+*Ifthesettingisalreadythere,thendonothing.+*/+if(!res)+return0;++returnrun_git("config","--global","--add",+"scalar.repo",the_repository->worktree,NULL);+}++staticintregister_dir(void)+{+intres=add_enlistment();++if(!res)+res=set_recommended_config();++if(!res)+res=start_maintenance();++returnres;+}++staticintcmd_register(intargc,constchar**argv)+{+structoptionoptions[]={+OPT_END(),+};+constchar*constusage[]={+N_("scalar register [<enlistment>]"),+NULL+};++argc=parse_options(argc,argv,NULL,options,+usage,0);++setup_enlistment_directory(argc,argv,usage,options,NULL);++returnregister_dir();+}staticstruct{constchar*name;int(*fn)(int,constchar**);}builtins[]={+{"register",cmd_register},{NULL,NULL},};
@@ -29,6 +29,22 @@ will be identical to the worktree. The `scalar` command implements various subcommands, and different options depending on the subcommand.+COMMANDS+--------++Register+~~~~~~~~++register [<enlistment>]::+ Adds the enlistment's repository to the list of registered repositories+ and starts background maintenance. If `<enlistment>` is not provided,+ then the enlistment associated with the current working directory is+ registered.+++Note: when this subcommand is called in a worktree that is called `src/`, its+parent directory is considered to be the Scalar enlistment. If the worktree is+_not_ called `src/`, it itself will be considered to be the Scalar enlistment.+ SEE ALSO -------- linkgit:git-maintenance[1].
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-09-14 14:44:05
From: Derrick Stolee <redacted>
Just like `scalar register` starts the scheduled background maintenance,
`scalar unregister` stops it. Note that we use `git maintenance start`
in `scalar register`, but we do not use `git maintenance stop` in
`scalar unregister`: this would stop maintenance for _all_ repositories,
not just for the one we want to unregister.
The `unregister` command also removes the corresponding entry from the
`[scalar]` section in the global Git config.
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 50 ++++++++++++++++++++++++++++++++-------
contrib/scalar/scalar.txt | 8 +++++++
2 files changed, 50 insertions(+), 8 deletions(-)
@@ -45,6 +46,13 @@ Note: when this subcommand is called in a worktree that is called `src/`, its parent directory is considered to be the Scalar enlistment. If the worktree is _not_ called `src/`, it itself will be considered to be the Scalar enlistment.+Unregister+~~~~~~~~~~++unregister [<enlistment>]::+ Remove the specified repository from the list of repositories+ registered with Scalar and stop the scheduled background maintenance.+ SEE ALSO -------- linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:44:06
From: Johannes Schindelin <redacted>
When a user deleted an enlistment manually, let's be generous and
_still_ unregister it.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 46 ++++++++++++++++++++++++++++++++
contrib/scalar/t/t9099-scalar.sh | 15 +++++++++++
2 files changed, 61 insertions(+)
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-09-14 14:44:16
From: Derrick Stolee <redacted>
The produced list simply consists of those repositories registered under
the multi-valued `scalar.repo` config setting in the user's Git config.
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 11 +++++++++++
contrib/scalar/scalar.txt | 11 ++++++++++-
2 files changed, 21 insertions(+), 1 deletion(-)
@@ -257,6 +257,16 @@ static int unregister_dir(void)returnres;}+staticintcmd_list(intargc,constchar**argv)+{+if(argc!=1)+die(_("`scalar list` does not take arguments"));++if(run_git("config","--global","--get-all","scalar.repo",NULL)<0)+return-1;+return0;+}+staticintcmd_register(intargc,constchar**argv){structoptionoptions[]={
@@ -28,11 +29,19 @@ an existing Git worktree with Scalar whose name is not `src`, the enlistment will be identical to the worktree. The `scalar` command implements various subcommands, and different options-depending on the subcommand.+depending on the subcommand. With the exception of `list`, all subcommands+expect to be run in an enlistment. COMMANDS --------+List+~~~~++list::+ List enlistments that are currently registered by Scalar. This+ subcommand does not need to be run inside an enlistment.+ Register ~~~~~~~~
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:44:18
From: Johannes Schindelin <redacted>
This implements Scalar's opinionated `clone` command: it tries to use a
partial clone and sets up a sparse checkout by default. In contrast to
`git clone`, `scalar clone` sets up the worktree in the `src/`
subdirectory, to encourage a separation between the source files and the
build output (which helps Git tremendously because it avoids untracked
files that have to be specifically ignored when refreshing the index).
Also, it registers the repository for regular, scheduled maintenance,
and configures a flurry of configuration settings based on the
experience and experiments of the Microsoft Windows and the Microsoft
Office development teams.
Note: since the `scalar clone` command is by far the most commonly
called `scalar` subcommand, we document it at the top of the manual
page.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 201 +++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 31 ++++-
contrib/scalar/t/t9099-scalar.sh | 32 +++++
3 files changed, 261 insertions(+), 3 deletions(-)
@@ -257,6 +258,205 @@ static int unregister_dir(void)returnres;}+/* printf-style interface, expects `<key>=<value>` argument */+staticintset_config(constchar*fmt,...)+{+structstrbufbuf=STRBUF_INIT;+char*value;+intres;+va_listargs;++va_start(args,fmt);+strbuf_vaddf(&buf,fmt,args);+va_end(args);++value=strchr(buf.buf,'=');+if(value)+*(value++)='\0';+res=git_config_set_gently(buf.buf,value);+strbuf_release(&buf);++returnres;+}++staticchar*remote_default_branch(constchar*url)+{+structchild_processcp=CHILD_PROCESS_INIT;+structstrbufout=STRBUF_INIT;++cp.git_cmd=1;+strvec_pushl(&cp.args,"ls-remote","--symref",url,"HEAD",NULL);+if(!pipe_command(&cp,NULL,0,&out,0,NULL,0)){+constchar*line=out.buf;++while(*line){+constchar*eol=strchrnul(line,'\n'),*p;+size_tlen=eol-line;+char*branch;++if(!skip_prefix(line,"ref: ",&p)||+!strip_suffix_mem(line,&len,"\tHEAD")){+line=eol+(*eol=='\n');+continue;+}++eol=line+len;+if(skip_prefix(p,"refs/heads/",&p)){+branch=xstrndup(p,eol-p);+strbuf_release(&out);+returnbranch;+}++error(_("remote HEAD is not a branch: '%.*s'"),+(int)(eol-p),p);+strbuf_release(&out);+returnNULL;+}+}+warning(_("failed to get default branch name from remote; "+"using local default"));+strbuf_reset(&out);++child_process_init(&cp);+cp.git_cmd=1;+strvec_pushl(&cp.args,"symbolic-ref","--short","HEAD",NULL);+if(!pipe_command(&cp,NULL,0,&out,0,NULL,0)){+strbuf_trim(&out);+returnstrbuf_detach(&out,NULL);+}++strbuf_release(&out);+error(_("failed to get default branch name"));+returnNULL;+}++staticintcmd_clone(intargc,constchar**argv)+{+constchar*branch=NULL;+intfull_clone=0;+structoptionclone_options[]={+OPT_STRING('b',"branch",&branch,N_("<branch>"),+N_("branch to checkout after clone")),+OPT_BOOL(0,"full-clone",&full_clone,+N_("when cloning, create full working directory")),+OPT_END(),+};+constchar*constclone_usage[]={+N_("scalar clone [<options>] [--] <repo> [<dir>]"),+NULL+};+constchar*url;+char*enlistment=NULL,*dir=NULL;+structstrbufbuf=STRBUF_INIT;+intres;++argc=parse_options(argc,argv,NULL,clone_options,clone_usage,0);++if(argc==2){+url=argv[0];+enlistment=xstrdup(argv[1]);+}elseif(argc==1){+url=argv[0];++strbuf_addstr(&buf,url);+/* Strip trailing slashes, if any */+while(buf.len>0&&is_dir_sep(buf.buf[buf.len-1]))+strbuf_setlen(&buf,buf.len-1);+/* Strip suffix `.git`, if any */+strbuf_strip_suffix(&buf,".git");++enlistment=find_last_dir_sep(buf.buf);+if(!enlistment){+die(_("cannot deduce worktree name from '%s'"),url);+}+enlistment=xstrdup(enlistment+1);+}else{+usage_msg_opt(_("You must specify a repository to clone."),+clone_usage,clone_options);+}++if(is_directory(enlistment))+die(_("directory '%s' exists already"),enlistment);++dir=xstrfmt("%s/src",enlistment);++strbuf_reset(&buf);+if(branch)+strbuf_addf(&buf,"init.defaultBranch=%s",branch);+else{+char*b=repo_default_branch_name(the_repository,1);+strbuf_addf(&buf,"init.defaultBranch=%s",b);+free(b);+}++if((res=run_git("-c",buf.buf,"init","--",dir,NULL)))+gotocleanup;++if(chdir(dir)<0){+res=error_errno(_("could not switch to '%s'"),dir);+gotocleanup;+}++setup_git_directory();++/* common-main already logs `argv` */+trace2_def_repo(the_repository);++if(!branch&&!(branch=remote_default_branch(url))){+res=error(_("failed to get default branch for '%s'"),url);+gotocleanup;+}++if(set_config("remote.origin.url=%s",url)||+set_config("remote.origin.fetch="+"+refs/heads/*:refs/remotes/origin/*")||+set_config("remote.origin.promisor=true")||+set_config("remote.origin.partialCloneFilter=blob:none")){+res=error(_("could not configure remote in '%s'"),dir);+gotocleanup;+}++if(!full_clone&&+(res=run_git("sparse-checkout","init","--cone",NULL)))+gotocleanup;++if(set_recommended_config())+returnerror(_("could not configure '%s'"),dir);++if((res=run_git("fetch","--quiet","origin",NULL))){+warning(_("partial clone failed; attempting full clone"));++if(set_config("remote.origin.promisor")||+set_config("remote.origin.partialCloneFilter")){+res=error(_("could not configure for full clone"));+gotocleanup;+}++if((res=run_git("fetch","--quiet","origin",NULL)))+gotocleanup;+}++if((res=set_config("branch.%s.remote=origin",branch)))+gotocleanup;+if((res=set_config("branch.%s.merge=refs/heads/%s",+branch,branch)))+gotocleanup;++strbuf_reset(&buf);+strbuf_addf(&buf,"origin/%s",branch);+res=run_git("checkout","-f","-t",buf.buf,NULL);+if(res)+gotocleanup;++res=register_dir();++cleanup:+free(enlistment);+free(dir);+strbuf_release(&buf);+returnres;+}+staticintcmd_list(intargc,constchar**argv){if(argc!=1)
@@ -29,12 +30,36 @@ an existing Git worktree with Scalar whose name is not `src`, the enlistment will be identical to the worktree. The `scalar` command implements various subcommands, and different options-depending on the subcommand. With the exception of `list`, all subcommands-expect to be run in an enlistment.+depending on the subcommand. With the exception of `clone` and `list`, all+subcommands expect to be run in an enlistment. COMMANDS --------+Clone+~~~~~++clone [<options>] <url> [<enlistment>]::+ Clones the specified repository, similar to linkgit:git-clone[1]. By+ default, only commit and tree objects are cloned. Once finished, the+ worktree is located at `<enlistment>/src`.+++The sparse-checkout feature is enabled (except when run with `--full-clone`)+and the only files present are those in the top-level directory. Use+`git sparse-checkout set` to expand the set of directories you want to see,+or `git sparse-checkout disable` to expand to all files (see+linkgit:git-sparse-checkout[1] for more details). You can explore the+subdirectories outside your sparse-checkout by using `git ls-tree HEAD`.++-b <name>::+--branch <name>::+ Instead of checking out the branch pointed to by the cloned+ repository's HEAD, check out the `<name>` branch instead.++--[no-]full-clone::+ A sparse-checkout is initialized by default. This behavior can be+ turned off via `--full-clone`.+ List ~~~~
@@ -64,7 +89,7 @@ unregister [<enlistment>]:: SEE ALSO ---------linkgit:git-maintenance[1].+linkgit:git-clone[1], linkgit:git-maintenance[1]. Scalar ---
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:44:19
From: Johannes Schindelin <redacted>
Just like `git clone`, the `scalar clone` command now also offers to
restrict the clone to a single branch.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 9 +++++++--
contrib/scalar/scalar.txt | 12 +++++++++++-
contrib/scalar/t/t9099-scalar.sh | 6 +++++-
3 files changed, 23 insertions(+), 4 deletions(-)
@@ -333,12 +333,15 @@ static char *remote_default_branch(const char *url)staticintcmd_clone(intargc,constchar**argv){constchar*branch=NULL;-intfull_clone=0;+intfull_clone=0,single_branch=0;structoptionclone_options[]={OPT_STRING('b',"branch",&branch,N_("<branch>"),N_("branch to checkout after clone")),OPT_BOOL(0,"full-clone",&full_clone,N_("when cloning, create full working directory")),+OPT_BOOL(0,"single-branch",&single_branch,+N_("only download metadata for the branch that will "+"be checked out")),OPT_END(),};constchar*constclone_usage[]={
@@ -409,7 +412,9 @@ static int cmd_clone(int argc, const char **argv)if(set_config("remote.origin.url=%s",url)||set_config("remote.origin.fetch="-"+refs/heads/*:refs/remotes/origin/*")||+"+refs/heads/%s:refs/remotes/origin/%s",+single_branch?branch:"*",+single_branch?branch:"*")||set_config("remote.origin.promisor=true")||set_config("remote.origin.partialCloneFilter=blob:none")){res=error(_("could not configure remote in '%s'"),dir);
@@ -56,6 +56,16 @@ subdirectories outside your sparse-checkout by using `git ls-tree HEAD`. Instead of checking out the branch pointed to by the cloned repository's HEAD, check out the `<name>` branch instead.+--[no-]single-branch::+ Clone only the history leading to the tip of a single branch, either+ specified by the `--branch` option or the primary branch remote's+ `HEAD` points at.+++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+`--single-branch` clone was made, no remote-tracking branch is created.+ --[no-]full-clone:: A sparse-checkout is initialized by default. This behavior can be turned off via `--full-clone`.
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:44:27
From: Johannes Schindelin <redacted>
This comes in handy during Scalar upgrades, or when config settings were
messed up by mistake.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 79 +++++++++++++++++++++-----------
contrib/scalar/scalar.txt | 8 ++++
contrib/scalar/t/t9099-scalar.sh | 8 ++++
3 files changed, 67 insertions(+), 28 deletions(-)
@@ -116,6 +117,13 @@ opinionated default settings that make Git work more efficiently with large repositories. As this task is run as part of `scalar clone` automatically, explicit invocations of this task are rarely needed.+Reconfigure+~~~~~~~~~~~++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.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-09-14 14:44:28
From: Derrick Stolee <redacted>
Note: this subcommand is provided primarily for backwards-compatibility,
for existing Scalar uses. It is mostly just a shim for `git
maintenance`, mapping task names from the way Scalar called them to the
way Git calls them.
The reason why those names differ? The background maintenance was first
implemented in Scalar, and when it was contributed as a patch series
implementing the `git maintenance` command, reviewers suggested better
names, those suggestions were accepted before the patches were
integrated into core Git.
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 64 +++++++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 19 ++++++++++++
2 files changed, 83 insertions(+)
@@ -490,6 +490,69 @@ static int cmd_register(int argc, const char **argv)returnregister_dir();}+staticintcmd_run(intargc,constchar**argv)+{+structoptionoptions[]={+OPT_END(),+};+struct{+constchar*arg,*task;+}tasks[]={+{"config",NULL},+{"commit-graph","commit-graph"},+{"fetch","prefetch"},+{"loose-objects","loose-objects"},+{"pack-files","incremental-repack"},+{NULL,NULL}+};+structstrbufbuf=STRBUF_INIT;+constchar*usagestr[]={NULL,NULL};+inti;++strbuf_addstr(&buf,N_("scalar run <task> [<enlistment>]\nTasks:\n"));+for(i=0;tasks[i].arg;i++)+strbuf_addf(&buf,"\t%s\n",tasks[i].arg);+usagestr[0]=buf.buf;++argc=parse_options(argc,argv,NULL,options,+usagestr,0);++if(!argc)+usage_with_options(usagestr,options);++if(!strcmp("all",argv[0])){+i=-1;+}else{+for(i=0;tasks[i].arg&&strcmp(tasks[i].arg,argv[0]);i++)+;/* keep looking for the task */++if(i>0&&!tasks[i].arg){+error(_("no such task: '%s'"),argv[0]);+usage_with_options(usagestr,options);+}+}++argc--;+argv++;+setup_enlistment_directory(argc,argv,usagestr,options,NULL);+strbuf_release(&buf);++if(i==0)+returnregister_dir();++if(i>0)+returnrun_git("maintenance","run",+"--task",tasks[i].task,NULL);++if(register_dir())+return-1;+for(i=1;tasks[i].arg;i++)+if(run_git("maintenance","run",+"--task",tasks[i].task,NULL))+return-1;+return0;+}+staticintremove_deleted_enlistment(structstrbuf*path){intres=0;
@@ -97,6 +98,24 @@ unregister [<enlistment>]:: Remove the specified repository from the list of repositories registered with Scalar and stop the scheduled background maintenance.+Run+~~~++scalar run ( all | config | commit-graph | fetch | loose-objects | pack-files ) [<enlistment>]::+ Run the given maintenance task (or all tasks, if `all` was specified).+ Except for `all` and `config`, this subcommand simply hands off to+ linkgit:git-maintenance[1] (mapping `fetch` to `prefetch` and+ `pack-files` to `incremental-repack`).+++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.+++The `config` 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 `scalar clone`+automatically, explicit invocations of this task are rarely needed.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:44:44
From: Johannes Schindelin <redacted>
After a Scalar upgrade, it can come in really handy if there is an easy
way to reconfigure all Scalar enlistments. This new option offers this
functionality.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 61 ++++++++++++++++++++++++++++++--
contrib/scalar/scalar.txt | 9 +++--
contrib/scalar/t/t9099-scalar.sh | 3 ++
3 files changed, 67 insertions(+), 6 deletions(-)
@@ -494,22 +494,77 @@ static int cmd_register(int argc, const char **argv)returnregister_dir();}+staticintget_scalar_repos(constchar*key,constchar*value,void*data)+{+structstring_list*list=data;++if(!strcmp(key,"scalar.repo"))+string_list_append(list,value);++return0;+}+staticintcmd_reconfigure(intargc,constchar**argv){+intall=0;structoptionoptions[]={+OPT_BOOL('a',"all",&all,+N_("reconfigure all registered enlistments")),OPT_END(),};constchar*constusage[]={-N_("scalar reconfigure [<enlistment>]"),+N_("scalar reconfigure [--all | <enlistment>]"),NULL};+structstring_listscalar_repos=STRING_LIST_INIT_DUP;+inti,res=0;+structrepositoryr={NULL};+structstrbufcommondir=STRBUF_INIT,gitdir=STRBUF_INIT;argc=parse_options(argc,argv,NULL,options,usage,0);-setup_enlistment_directory(argc,argv,usage,options,NULL);+if(!all){+setup_enlistment_directory(argc,argv,usage,options,NULL);++returnset_recommended_config(1);+}++if(argc>0)+usage_msg_opt(_("--all or <enlistment>, but not both"),+usage,options);++git_config(get_scalar_repos,&scalar_repos);-returnset_recommended_config(1);+for(i=0;i<scalar_repos.nr;i++){+constchar*dir=scalar_repos.items[i].string;++strbuf_reset(&commondir);+strbuf_reset(&gitdir);++if(chdir(dir)<0){+warning_errno(_("could not switch to '%s'"),dir);+res=-1;+}elseif(discover_git_directory(&commondir,&gitdir)<0){+warning_errno(_("git repository gone in '%s'"),dir);+res=-1;+}else{+git_config_clear();++the_repository=&r;+r.commondir=commondir.buf;+r.gitdir=gitdir.buf;++if(set_recommended_config(1)<0)+res=-1;+}+}++string_list_clear(&scalar_repos,1);+strbuf_release(&commondir);+strbuf_release(&gitdir);++returnres;}staticintcmd_run(intargc,constchar**argv)
@@ -32,8 +32,8 @@ an existing Git worktree with Scalar whose name is not `src`, the enlistment will be identical to the worktree. The `scalar` command implements various subcommands, and different options-depending on the subcommand. With the exception of `clone` and `list`, all-subcommands expect to be run in an enlistment.+depending on the subcommand. With the exception of `clone`, `list` and+`reconfigure --all`, all subcommands expect to be run in an enlistment. COMMANDS --------
@@ -124,6 +124,9 @@ 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.+With the `--all` option, all enlistments currently registered with Scalar+will be reconfigured. Use this option after each Scalar upgrade.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Matthew John Cheetham via GitGitGadget <hidden> Date: 2021-09-14 14:44:45
From: Matthew John Cheetham <redacted>
Delete an enlistment by first unregistering the repository and then
deleting the enlistment directory (usually the directory containing the
worktree `src/` directory).
On Windows, if the current directory is inside the enlistment's
directory, change to the parent of the enlistment directory, to allow us
to delete the enlistment (directories used by processes e.g. as current
working directories cannot be deleted on Windows).
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Matthew John Cheetham <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 55 ++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 8 +++++
contrib/scalar/t/t9099-scalar.sh | 9 ++++++
3 files changed, 72 insertions(+)
@@ -127,6 +128,13 @@ reconfigure the enlistment. With the `--all` option, all enlistments currently registered with Scalar will be reconfigured. Use this option after each Scalar upgrade.+Delete+~~~~~~++delete <enlistment>::+ This subcommand lets you delete an existing Scalar enlistment from your+ local file system, unregistering the repository.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:44:46
From: Johannes Schindelin <redacted>
The .NET version of Scalar has a `version` command. This was necessary
because it was versioned independently of Git.
Since Scalar is now tightly coupled with Git, it does not make sense for
them to show different versions. Therefore, it shows the same output as
`git version`. For backwards-compatibility with the .NET version,
`scalar version` prints to `stderr`, though (`git version` prints to
`stdout` instead).
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:44:47
From: Johannes Schindelin <redacted>
The `git` executable has these two very useful options:
-C <directory>:
switch to the specified directory before performing any actions
-c <key>=<value>:
temporarily configure this setting for the duration of the
specified scalar subcommand
With this commit, we teach the `scalar` executable the same trick.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 22 +++++++++++++++++++++-
contrib/scalar/scalar.txt | 10 ++++++++++
2 files changed, 31 insertions(+), 1 deletion(-)
@@ -806,6 +806,25 @@ int cmd_main(int argc, const char **argv)structstrbufscalar_usage=STRBUF_INIT;inti;+while(argc>1&&*argv[1]=='-'){+if(!strcmp(argv[1],"-C")){+if(argc<3)+die(_("-C requires a <directory>"));+if(chdir(argv[2])<0)+die_errno(_("could not change to '%s'"),+argv[2]);+argc-=2;+argv+=2;+}elseif(!strcmp(argv[1],"-c")){+if(argc<3)+die(_("-c requires a <key>=<value> argument"));+git_config_push_parameter(argv[2]);+argc-=2;+argv+=2;+}else+break;+}+if(argc>1){argv++;argc--;
@@ -36,6 +36,16 @@ The `scalar` command implements various subcommands, and different options depending on the subcommand. With the exception of `clone`, `list` and `reconfigure --all`, all subcommands expect to be run in an enlistment.+The following options can be specified _before_ the subcommand:++-C <directory>::+ Before running the subcommand, change the working directory. This+ option imitates the same option of linkgit:git[1].++-c <key>=<value>::+ For the duration of running the specified subcommand, configure this+ setting. This option imitates the same option of linkgit:git[1].+ COMMANDS --------
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-09-14 14:44:55
tl;dr: This series contributes the Scalar command to the Git project. This
command provides an opinionated way to create and configure repositories
with a focus on very large repositories.
Changes since v3:
* Moved the "Changes since" section to the top, to make it easier to see
what changed.
* Reworded the commit message of the first patch.
* Removed the [RFC] prefix because I did not hear any objections against
putting this into contrib/.
Changes since v2:
* Adjusted the description of the list command in the manual page , as
suggested by Bagas.
* Addressed two style nits in cmd_run().
* The documentation of git reconfigure -a was improved.
Changes since v1:
* A couple typos were fixed
* The code parsing the output of ls-remote was made more readable
* The indentation used in scalar.txt now consistently uses tabs
* We no longer hard-code core.bare = false when registering with Scalar
Background
==========
Years ago, Microsoft wanted to move the source code of the Windows operating
system to Git. The challenge there was to prove that Git could scale to
massive monorepos. The VFS for Git (formerly GVFS) project was born to take
up that challenge.
The final solution included a virtual filesystem (with both user-mode and
kernel components) and a customized fork of Git for Windows. This solution
contained several key concepts, such as only populating a portion of the
working directory, demand-fetching blobs, and performing periodic repo
maintenance in the background. However, the required kernel drivers made it
difficult to port the solution to other platforms.
But it was realized that many of these key concepts were independent of the
actual VFS and its projection of the working directory. The Scalar project
was created to make that separation, refine the key concepts, and then
extract those features into the new Scalar command.
The present
===========
The Scalar project provides a completely functional non-virtual experience
for monorepos. But why stop there. The Scalar project was designed to be a
self-destructing vehicle to allow those key concepts to be moved into core
Git itself for the benefit of all. For example, partial clone,
sparse-checkout, and background maintenance have already been upstreamed and
removed from Scalar proper. This patch series provides a C-based
implementation of the final remaining portions of the Scalar command. This
will make it easier for users to experiment with the Scalar command. It will
also make it substantially easier to experiment with moving functionality
from Scalar into core Git, while maintaining backwards-compatibility for
existing Scalar users.
The C-based Scalar has been shipped to Scalar users, and can be tested by
any interested reader:
https://github.com/microsoft/git/releases/tag/v2.33.0.vfs.0.0 (it offers a
Git for Windows installer, a macOS package and an Ubuntu package).
Opportunities
=============
Apart from providing the Scalar command, this contribution is intended to
serve as a basis for further mailing list discussions on moving (some of)
these key concepts into the main Git commands.
For example, we previously discussed the idea of a "git big-clone" that does
much of what "scalar clone" is doing. This patch series is a step to make
such functionality exist in the Git code base while we simmer on what such a
"git big-clone" command-line interface would look like.
This is one of many possible ways to do this. Creating a 'git big-clone'
could lock Git into backwards compatibility concerns so it is necessary to
approach such an endeavor with caution. As a discussion starter, the scalar
clone <url> command does roughly this:
1. git clone --sparse --filter=blob:none /src
2. git -C /src sparse-checkout init --cone
3. git -C /src config (many times)
4. git -C /src maintenance start
It is my hope inspire discussions about what parts of Scalar could go into
core Git, and where, and in which form. While we wish to maintain
backwards-compatibility of Scalar's command-line interface (because it is
already in use), by having the Scalar code in the same code base as Git's,
it will be much easier to move functionality without having to maintain
loose version coupling between independently-versioned Scalar and Git. The
tight version-coupling, along with having access to libgit.a also allows the
C-based implementation of Scalar to be much smaller than the original .NET
version.
For example, we might choose in the future to implement, say, git clone
--scale=partial,cone to initialize a partial clone with a cone-sparse
checkout, that would not only be totally doable, and not only would we
already have precedent and data to prove that this actually makes engineers
happy who have to work on ginormous repositories, but we could then also
implement it by moving parts of contrib/scalar/ to builtin/ (where
contrib/scalar/ would then call the built-ins accordingly rather than
hard-coding the defaults itself).
We now also have the opportunity to discuss the merits of Scalar's clone
caching, which is not actually part of this patch series because it is a bit
coupled with the GVFS parts of microsoft/git for the moment, where clones
automatically get registered with a populated alternate repository that is
identified by the URL, meaning: subsequent clones of the same repository are
vastly faster than the first one because they do not actually download the
already-received objects again, they access the cache instead.
Another thing that I could imagine to be discussed at length is the
distinction between enlistment and worktree (where the latter is the actual
Git worktree and usually lives in the src/ subdirectory of the former). This
encourages untracked and ignored files to be placed outside the worktree,
making Git's job much easier. This idea, too, might find its way in one way
or another into Git proper.
These are just a few concepts in Scalar that do not yet have equivalents in
Git. By putting this initial implementation into contrib/, we create a
foundation for future discussions of these concepts.
We plan on updating the recommended config settings in scalar register as
new Git features are available (such as builtin FSMonitor and sparse-index,
when ready). To facilitate upgrading existing Scalar enlistments, their
paths are automatically added to the [scalar] section of the global Git
config, and the scalar reconfigure --all command will process all of them.
Epilogue
========
Now, to address some questions that I imagine every reader has who made it
this far:
* Why not put the Scalar functionality directly into a built-in? Creating a
Git builtin requires scrutiny over every aspect of the feature, which is
difficult to do while also maintaining the command-line interface
contract and expected behavior of the Scalar command (there are existing
users, after all). By having the Scalar command in contrib/, we present a
simple option for users to have these features in the short term while
the Git contributor community decides which bits to absorb into Git
built-ins.
* Why implement the Scalar command in the Git codebase? We ported Scalar to
the microsoft/git fork for several reasons. First, we realized it was
possible now that the core features exist inside Git itself. Second,
compiling Scalar directly within a version of Git allows us to remove a
version compatibility check from each config option that might or might
not apply based on the installed Git version. Finally, this new location
has greatly simplified our release process and the installation process
for users. We now have ways to install Scalar with microsoft/git via
winget, brew, and apt-get. This has been the case since we shipped
v2.32.0 to our users, read: this setup has served us well already.
* Why contribute Scalar to the Git project? We are biased, of course, yet
we do have evidence that the Scalar command is a helpful tool that offers
an simple way to handle huge repositories with ease. By contributing it
to the core Git project, we are able to share it with more users,
especially some users who do not want to install the microsoft/git fork.
We intend to include Scalar as a component in git-for-windows/git, but
are contributing it here first. Further, we think there is benefit to the
Git developer community as this presents an example of how to set certain
defaults that work for large repositories.
* Does this integrate with the built-in FSMonitor yet? No, not yet. I do
have a couple of add-on patch series lined up, one of them being the
integration with the built-in FSMonitor, which obviously has to wait
until the FSMonitor patch series advances further.
Derrick Stolee (4):
scalar: 'register' sets recommended config and starts maintenance
scalar: 'unregister' stops background maintenance
scalar: implement 'scalar list'
scalar: implement the `run` command
Johannes Schindelin (10):
scalar: create a rudimentary executable
scalar: start documenting the command
scalar: create test infrastructure
scalar: let 'unregister' handle a deleted enlistment directory
gracefully
scalar: implement the `clone` subcommand
scalar: teach 'clone' to support the --single-branch option
scalar: allow reconfiguring an existing enlistment
scalar: teach 'reconfigure' to optionally handle all registered
enlistments
scalar: implement the `version` command
scalar: accept -C and -c options before the subcommand
Matthew John Cheetham (1):
scalar: implement the `delete` command
Makefile | 8 +
contrib/scalar/.gitignore | 5 +
contrib/scalar/Makefile | 57 +++
contrib/scalar/scalar.c | 844 +++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 154 ++++++
contrib/scalar/t/Makefile | 78 +++
contrib/scalar/t/t9099-scalar.sh | 88 ++++
7 files changed, 1234 insertions(+)
create mode 100644 contrib/scalar/.gitignore
create mode 100644 contrib/scalar/Makefile
create mode 100644 contrib/scalar/scalar.c
create mode 100644 contrib/scalar/scalar.txt
create mode 100644 contrib/scalar/t/Makefile
create mode 100755 contrib/scalar/t/t9099-scalar.sh
base-commit: ebf3c04b262aa27fbb97f8a0156c2347fecafafb
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1005%2Fdscho%2Fscalar-the-beginning-v4
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1005/dscho/scalar-the-beginning-v4
Pull-Request: https://github.com/gitgitgadget/git/pull/1005
Range-diff vs v3:
1: b8c7d3f8450 ! 1: 852ec003109 scalar: create a rudimentary executable
@@ Commit message
with the intention to facilitate integrating the functionality into core
Git all while maintaining backwards-compatibility for existing Scalar
users (which will be much easier when both live in the same worktree).
- It was always to plan to contribute all of the proven strategies back to
- core Git.
+ It has always been the plan to contribute all of the proven strategies
+ back to core Git.
For example, while the virtual filesystem provided by VFS for Git helped
the team developing the Windows operating system to move onto Git, while
@@ Commit message
repository in a healthy state.
With partial clone, sparse checkout and `git maintenance` having been
- upstreamed, there is little left that `scalar.exe` does that which
- `git.exe` cannot do. One such thing is that `scalar clone <url>` will
+ upstreamed, there is little left that `scalar.exe` does which `git.exe`
+ cannot do. One such thing is that `scalar clone <url>` will
automatically set up a partial, sparse clone, and configure
known-helpful settings from the start.
2: 4f886575dcf = 2: 6ab9c7195da scalar: start documenting the command
3: bcfde9bc765 = 3: 14992033d7c scalar: create test infrastructure
4: ee3e26a0c4e = 4: bbbc4c33390 scalar: 'register' sets recommended config and starts maintenance
5: 6142f75875b = 5: eadcddb2a9b scalar: 'unregister' stops background maintenance
6: 82dd253154f = 6: c3c2f3a4971 scalar: let 'unregister' handle a deleted enlistment directory gracefully
7: d291d3723a6 = 7: 90ef9b826b2 scalar: implement 'scalar list'
8: 40dbf61771e = 8: 79cde4417d8 scalar: implement the `clone` subcommand
9: 414dbe7d859 = 9: 0acdaeb7396 scalar: teach 'clone' to support the --single-branch option
10: 76de416a643 = 10: 64e3403ac12 scalar: implement the `run` command
11: 655a902b9df = 11: ada242c7c8c scalar: allow reconfiguring an existing enlistment
12: 2d1987bfcda = 12: 5c11117da51 scalar: teach 'reconfigure' to optionally handle all registered enlistments
13: c67938299ee = 13: 914c16c7fcd scalar: implement the `delete` command
14: d2cd2b7094b = 14: 06995770120 scalar: implement the `version` command
15: 7ccc4f8b9b0 = 15: 7539725bb4f scalar: accept -C and -c options before the subcommand
--
gitgitgadget
From: Johannes Schindelin <hidden> Date: 2021-09-14 15:10:30
Hi,
On Tue, 14 Sep 2021, Johannes Schindelin via GitGitGadget wrote:
tl;dr: This series contributes the Scalar command to the Git project. This
command provides an opinionated way to create and configure repositories
with a focus on very large repositories.
Changes since v3:
* Moved the "Changes since" section to the top, to make it easier to see
what changed.
* Reworded the commit message of the first patch.
* Removed the [RFC] prefix because I did not hear any objections against
putting this into contrib/.
Forgot to say:
* Sent this out to reflect my latest state before taking off for two
weeks.
Ciao,
Dscho
Seeing [1] about the planned re-roll I have the above a shot a few
days ago, see the original discussion at [2] (indirectly linked
above).
There is a good reason why I did not engage in that tangent about
deviating from the established `contrib/*/Makefile` paradigm: I find
it particularly unrelated to what this here patch series is trying to
accomplish, and I cannot bring myself to be interested in the proposed
build system changes, either, because I do not see any benefit in the
changes, only downsides.
I find the distraction unnecessary.
Perhaps I'm reading too much between the lines here, so forgive any
undue knee-jerk reaction.
Okay, let's try an analogy.
Imagine that a person is asking for directions to the train station. And
the other person is replying by asking "did you know that this train
station was built in 1878? It is actually quite interesting a story...
[and then goes on to describe the history and what excites them about
it]". Now, the first person tries again to ask for directions, again does
not get an answer to that question, and is slowly starting to look at
their watch. The second person, being completely oblivious to all of this,
goes on with their wonderful story about the train station and its
cultural heritage. So the first person walks a bit further to ask a third
person, but the second person is not done yet and says "but you haven't
heard me out! That's disrespectful!".
Just imagine for a minute how you would feel if you were the first person.
And that is how I feel asking for reviews about the Scalar patch series
and then being forcefully dragged into that tangent about the build
process.
I find the well-established paradigm to keep contrib/'s build procedures
as confined to their own directory as possible the most reasonable way to
handle the build by virtue of _not_ polluting the top-level Makefile
unnecessarily. All of your objections strike me simply as personal
viewpoints, not as technical arguments, and they fail to address this
"pollution of the top-level Makefile" problem. I therefore strongly
disagree with your suggestion that the build system should be changed, I
would even argue that your suggestion should been dismissed on purely
technical grounds, and I wish you hadn't forced me to say this as
forcefully.
And even if I looked more favorably on your suggestion to change the build
procedure, I find this distraction about the build as little constructive
as the explanations about the train station's history above.
If we're indulging each other, here's my version of that train analogy:
We're in the business of selling a sugary drink that comes in a red can.
We've got a big factory with an attached train station, and all the
trains that move our product are also red.
Now, some of our customers want the new purple colored sugary drink
we've cooked up. A new purple factory's all set up for making them.
But for some reason the part of the business and distribution plans call
for building a new purple train station parallel to our existing one.
All purple sugary drinks are expected to be moved on purple trains, all
our conductors will need some slight re-training and switchover time to
flip-flop between red and purple trains. Issues with purple production
floors and purple workflows will need to be ironed out.
We did a survey of our customers and most of them weren't even aware
that there was such a thing as train. Or perhaps they've seen other
trains, but most haven't seen our trains.
Trains occasionally need field servicing, luckily our fleet of red
trains is set up to carry its own spare parts. Purple trains can only be
serviced with the assistance of a red train.
A product survey asking customers whether their enjoyment of the red or
purple sugary drinks might be impacted by the color of the train they
were shipped on only resulted in puzzled blank looks from the
participants.
The current state of the purple train station and its fleet of purple
trains is that it somewhat works with some hiccups. The currently built
purple train station omitted any sort of train track for leaving the
station though. It should be easy to add one, but...
The manager of the purple train project has been asked whether we can't
just have our red machines in our red factory make the purple sugary
drink, which we can then load on our fleet of red trains. Why do we need
a new parallel rail system when we really care about customers drinking
our delicious sugary drinks?
In case it's not obvious:
{red,purple} sugary drink = /usr/bin/git & /usr/bin/scalar
{red,purple} train station = ./Makefile & ./contrib/scalar/Makefile
train track for leaving the station = make install (AFAICT your
current patches have no
installation mechanism)
Those
suggestions do succeed in derailing the conversation about how Git could
scale better, how Scalar _does_ teach Git how to scale better, and about
how to teach Git itself more and more of Scalar's tricks.
If you have ideas how to teach, say, `git clone` to perform a couple of
Scalar's tricks, by all means, let's hear them, or even better, let's see
those patches. If you want to change the build system, still, I cannot
stop you from sending patches to that end to the Git mailing list, but
please expect me to be uninterested in them in any way, and to prefer to
spend my efforts to improve Git elsewhere. If you have other ideas how to
improve on Scalar in a user-perceptible way, however, I am all ears again.
I hope this clarifies it, without the need to read between the lines,
Johannes
Whatever the end goal of the patches you're sending part of them is
proposing a given approach to go from A to B.
I find it odd to be claiming that the end-state is so important that we
can't spare time to discuss some of the implementation
details.
Particularly in this case, where I've sent a mostly working patch-on-top
which I think should be clear from context I'd be willing to finish up,
so it's not like it's just pointless nitpicking with no end-goal of a
code improvement in sight.
On Tue, Sep 14 2021, Johannes Schindelin via GitGitGadget wrote:
+int cmd_main(int argc, const char **argv)
+{
+ struct strbuf scalar_usage = STRBUF_INIT;
+ int i;
+
+ if (argc > 1) {
+ argv++;
+ argc--;
+
+ for (i = 0; builtins[i].name; i++)
+ if (!strcmp(builtins[i].name, argv[0]))
+ return !!builtins[i].fn(argc, argv);
+ }
+
+ strbuf_addstr(&scalar_usage,
+ N_("scalar <command> [<options>]\n\nCommands:\n"));
+ for (i = 0; builtins[i].name; i++)
+ strbuf_addf(&scalar_usage, "\t%s\n", builtins[i].name);
+
+ usage(scalar_usage.buf);
+}
In 04/15 you continue and use the parse-options.c API, but here it's the
usage.c API, which is generally being phased out. Any reason for the
difference? It's preferrable not to add new usage() users if we can help
it, I think we'll eventually want to remove it.
On Tue, Sep 14, 2021 at 7:39 AM Derrick Stolee via GitGitGadget
[off-list ref] wrote:
...
+static int set_recommended_config(void)
+{
+ struct {
+ const char *key;
+ const char *value;
+ } config[] = {
+ { "am.keepCR", "true" },
+ { "core.FSCache", "true" },
+ { "core.multiPackIndex", "true" },
+ { "core.preloadIndex", "true" },
+#ifndef WIN32
+ { "core.untrackedCache", "true" },
+#else
+ /*
+ * Unfortunately, Scalar's Functional Tests demonstrated
+ * that the untracked cache feature is unreliable on Windows
+ * (which is a bummer because that platform would benefit the
+ * most from it). For some reason, freshly created files seem
+ * not to update the directory's `lastModified` time
+ * immediately, but the untracked cache would need to rely on
+ * that.
+ *
+ * Therefore, with a sad heart, we disable this very useful
+ * feature on Windows.
+ */
+ { "core.untrackedCache", "false" },
+#endif
Interesting. (I'm somewhat leery of the untrackedCache just knowing
that it used to operate despite an exponential number of visits to
files (exponential in depth of directories) and getting different
answers with different visits, making me feel like it was black magic
that it ever worked and wondering what kind of corner case issues
still lurk with it. See e.g.
https://lore.kernel.org/git/CABPp-BFiwzzUgiTj_zu+vF5x20L0=1cf25cHwk7KZQj2YkVzXw@mail.gmail.com/)
I take it your users don't make use of jgit? (Users aren't using jgit
directly here, at least not to my knowledge, but multiple gradle
plugins do.) I tried turning this on a while back, and quickly got
multiple reports of problems because jgit didn't understand the index.
I had to turn it off and send out various PSAs on how to recover.
Is this just historical and not needed anymore, is it here just for a
little longer and you are planning on transitioning away from this, or
are you still set on this setting?
+ { "pack.useBitmaps", "false" },
I don't understand anything bitmap related, but I thought they were
performance related, so I'm surprised by this one. Is there a reason
for this one? (Is it handled by maintenance instead?)
If you simply set core.untrackedCache to false _after_ setting
feature.manyFiles to true, would it make sense to switch this? (Or
does it matter, since you've already individually set all the config
settings that this one would set?)
Are there easy-ish ways for other groups of users to adopt scalar but
change the list of config settings (e.g. index.version and
merge.renames) in some common way for all those users?
On Mon, Aug 30, 2021 at 2:36 PM Johannes Schindelin via GitGitGadget
[off-list ref] wrote:
...
COMMANDS
--------
+Clone
+~~~~~
+
+clone [<options>] <url> [<enlistment>]::
+ Clones the specified repository, similar to linkgit:git-clone[1]. By
+ default, only commit and tree objects are cloned. Once finished, the
+ worktree is located at `<enlistment>/src`.
++
+The sparse-checkout feature is enabled (except when run with `--full-clone`)
+and the only files present are those in the top-level directory. Use
+`git sparse-checkout set` to expand the set of directories you want to see,
+or `git sparse-checkout disable` to expand to all files (see
+linkgit:git-sparse-checkout[1] for more details). You can explore the
+subdirectories outside your sparse-checkout by using `git ls-tree HEAD`.
Should this be `git ls-tree [-r] HEAD`? Do you expect people to just
add directories that are found immediately under the toplevel, rather
than some that are a bit deeper?
On Tue, Sep 14, 2021 at 7:39 AM Johannes Schindelin via GitGitGadget
[off-list ref] wrote:
quoted hunk
From: Johannes Schindelin <redacted>
This comes in handy during Scalar upgrades, or when config settings were
messed up by mistake.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 79 +++++++++++++++++++++-----------
contrib/scalar/scalar.txt | 8 ++++
contrib/scalar/t/t9099-scalar.sh | 8 ++++
3 files changed, 67 insertions(+), 28 deletions(-)
Now you have optional settings...but index.version and merge.renames
aren't among them?? Why are those required? (...and to go a step
further; should merge.renames even be off in a merge-ort world?)
On Tue, Sep 14, 2021 at 7:39 AM Matthew John Cheetham via GitGitGadget
[off-list ref] wrote:
From: Matthew John Cheetham <redacted>
Delete an enlistment by first unregistering the repository and then
deleting the enlistment directory (usually the directory containing the
worktree `src/` directory).
On Windows, if the current directory is inside the enlistment's
directory, change to the parent of the enlistment directory, to allow us
to delete the enlistment (directories used by processes e.g. as current
working directories cannot be deleted on Windows).
But if the current directory is inside the enlistment's directory,
didn't that happen because the parent process' current directory was
inside the enlistment directory? Or was there some kind of directory
switching that scalar itself was doing causing it to be inside the
enlistment directory?
If the the current directory was inside the enlistment's directory
because it inherited a parent process' current directory, wouldn't
that also prevent deleting it? If so, should there be a special check
for that case and pre-emptively returning an error rather than
attempting the recursive directory deletion and just spitting out an
error when it fails?
(Also seems slightly related to
https://github.com/gitgitgadget/git/pull/1037, which I'll submit as
soon as en/removing_untracked_fixes hits next.)
quoted hunk
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Matthew John Cheetham <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 55 ++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 8 +++++
contrib/scalar/t/t9099-scalar.sh | 9 ++++++
3 files changed, 72 insertions(+)
@@ -127,6 +128,13 @@ reconfigure the enlistment. With the `--all` option, all enlistments currently registered with Scalar will be reconfigured. Use this option after each Scalar upgrade.+Delete+~~~~~~++delete <enlistment>::+ This subcommand lets you delete an existing Scalar enlistment from your+ local file system, unregistering the repository.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
On Tue, Sep 14, 2021 at 7:39 AM Derrick Stolee via GitGitGadget
[off-list ref] wrote:
...
quoted
+ { "pack.useBitmaps", "false" },
I don't understand anything bitmap related, but I thought they were
performance related, so I'm surprised by this one. Is there a reason
for this one? (Is it handled by maintenance instead?)
From: Johannes Schindelin <hidden> Date: 2021-10-06 20:32:59
Hi Elijah,
On Mon, 27 Sep 2021, Elijah Newren wrote:
On Tue, Sep 14, 2021 at 7:39 AM Derrick Stolee via GitGitGadget
[off-list ref] wrote:
...
quoted
+static int set_recommended_config(void)
+{
+ struct {
+ const char *key;
+ const char *value;
+ } config[] = {
+ { "am.keepCR", "true" },
+ { "core.FSCache", "true" },
+ { "core.multiPackIndex", "true" },
+ { "core.preloadIndex", "true" },
+#ifndef WIN32
+ { "core.untrackedCache", "true" },
+#else
+ /*
+ * Unfortunately, Scalar's Functional Tests demonstrated
+ * that the untracked cache feature is unreliable on Windows
+ * (which is a bummer because that platform would benefit the
+ * most from it). For some reason, freshly created files seem
+ * not to update the directory's `lastModified` time
+ * immediately, but the untracked cache would need to rely on
+ * that.
+ *
+ * Therefore, with a sad heart, we disable this very useful
+ * feature on Windows.
+ */
+ { "core.untrackedCache", "false" },
+#endif
Interesting. (I'm somewhat leery of the untrackedCache just knowing
that it used to operate despite an exponential number of visits to
files (exponential in depth of directories) and getting different
answers with different visits, making me feel like it was black magic
that it ever worked and wondering what kind of corner case issues
still lurk with it. See e.g.
https://lore.kernel.org/git/CABPp-BFiwzzUgiTj_zu+vF5x20L0=1cf25cHwk7KZQj2YkVzXw@mail.gmail.com/)
The implementation of the untracked cache certainly is quite a challenge
to wrap one's head around, for sure. However, it does manage to speed up
operations substantially (when it works).
The real fun starts when you turn on the FSMonitor, though. Then it is
reliable, all of a sudden! The reason seems to be some sort of delayed
lastModified (AKA mtime) evaluation which is somehow triggered by
FSMonitor ;-)
So in microsoft/git, where we include FSMonitor and turn it on as part of
`scalar clone`, we also enable the untracked cache, for noticeably happier
users.
Not only opinionated, but special configuration for certain sites?
I'm not complaining, just slightly surprised.
Yes. I am not aware of other sites where you would want to use different
credentials depending on the URL path, but Azure DevOps definitely is such
a site, and therefore needs `useHttpPath`. Rather than requiring users to
know this, we set it for them.
Nope ;-) I doubt that the features we use to make Git scalable are
implemented in JGit.
(Users aren't using jgit directly here, at least not to my knowledge,
but multiple gradle plugins do.) I tried turning this on a while back,
and quickly got multiple reports of problems because jgit didn't
understand the index. I had to turn it off and send out various PSAs on
how to recover.
TBH it gives me shivers of dread thinking about large
repositories/worktrees being handled within a Java VM. The amount of,
let's call it "non-canonical" code, required by JGit to make it somewhat
performant, is staggering. Just think about the way you have to emulate
mmap()ing part of a packfile and interpreting it as a packed C struct. I
forgot the details, of course, and I am quite glad that I did.
Is this just historical and not needed anymore, is it here just for a
little longer and you are planning on transitioning away from this, or
are you still set on this setting?
It is here mostly for historical reasons.
quoted
+ { "pack.useBitmaps", "false" },
I don't understand anything bitmap related, but I thought they were
performance related, so I'm surprised by this one. Is there a reason
for this one? (Is it handled by maintenance instead?)
Again, this is here for historical reasons. Scalar sets this, and my goal
with this patch series is to port it from .NET to C. So I did not question
the reasoning.
My _guess_ however is that bitmaps really only work well when everything
is in one single pack. Which is rather not the case with Scalar
enlistments: they are way too large to be repacked all the time.
If you simply set core.untrackedCache to false _after_ setting
feature.manyFiles to true, would it make sense to switch this? (Or
does it matter, since you've already individually set all the config
settings that this one would set?)
Frankly, I was a bit puzzled why `feature.manyFiles` was set to `false`.
The rationale is explained in
https://github.com/microsoft/scalar/commit/2fc84dba9c95:
The feature.* config settings change the defaults for some other
config settings. We already monitor config settings pretty carefully,
so let's disable these.
As to switching this, it shouldn't matter. The idea of `feature.*` is to
set defaults, but not override any explicitly configured settings.
Are there easy-ish ways for other groups of users to adopt scalar but
change the list of config settings (e.g. index.version and
merge.renames) in some common way for all those users?
Not in Scalar.
I would hope, however, that we could figure out ways to make this more
configurable when re-implementing this functionality in core Git. I have a
couple ideas, but nothing fleshed out, and besides, I do not want to think
too far ahead, I already made that mistake and then got bogged down in
discussions about minimal vs non-minimal changes in the top-level Makefile
;-)
So yeah, good point, but it's probably not a good time yet to discuss this
tangent.
Thank you for reviewing,
Dscho
From: Johannes Schindelin <hidden> Date: 2021-10-06 20:38:24
Hi Elijah,
On Mon, 27 Sep 2021, Elijah Newren wrote:
Sorry, one more thing...
On Tue, Sep 14, 2021 at 7:39 AM Derrick Stolee via GitGitGadget
[off-list ref] wrote:
...
quoted
+ /* check if currently in enlistment root with src/ workdir */
+ strbuf_addstr(&path, "/src/.git");
+ if (is_git_directory(path.buf)) {
...and...
quoted
+ /* check if currently in workdir */
+ strbuf_addstr(&path, "/.git");
+ if (is_git_directory(path.buf)) {
Do these two checks suggest that only a primary worktree can be
enlisted with scalar? (Is git-worktree generally incompatible?)
Good point! I think we'll need to use `is_nonbare_repository_dir()`
instead.
This also has the additional benefit of doing away with quite a bit of
`/.git` appending and undoing it. I.e. it simplifies the code
dramatically.
Ciao,
Dscho
From: Johannes Schindelin <hidden> Date: 2021-10-06 20:40:24
Hi Elijah,
On Mon, 27 Sep 2021, Elijah Newren wrote:
On Mon, Aug 30, 2021 at 2:36 PM Johannes Schindelin via GitGitGadget
[off-list ref] wrote:
quoted
...
quoted
COMMANDS
--------
+Clone
+~~~~~
+
+clone [<options>] <url> [<enlistment>]::
+ Clones the specified repository, similar to linkgit:git-clone[1]. By
+ default, only commit and tree objects are cloned. Once finished, the
+ worktree is located at `<enlistment>/src`.
++
+The sparse-checkout feature is enabled (except when run with `--full-clone`)
+and the only files present are those in the top-level directory. Use
+`git sparse-checkout set` to expand the set of directories you want to see,
+or `git sparse-checkout disable` to expand to all files (see
+linkgit:git-sparse-checkout[1] for more details). You can explore the
+subdirectories outside your sparse-checkout by using `git ls-tree HEAD`.
Should this be `git ls-tree [-r] HEAD`? Do you expect people to just
add directories that are found immediately under the toplevel, rather
than some that are a bit deeper?
I fear that `git ls-tree -r HEAD` in any monorepo might be a bit too
overwhelming for any reader.
But I agree that just looking at HEAD is probably not enough. Maybe we
should use `git ls-tree HEAD[:<dir>]`?
Ciao,
Dscho
From: Johannes Schindelin <hidden> Date: 2021-10-06 20:43:34
Hi Elijah,
On Mon, 27 Sep 2021, Elijah Newren wrote:
On Tue, Sep 14, 2021 at 7:39 AM Johannes Schindelin via GitGitGadget
[off-list ref] wrote:
quoted
From: Johannes Schindelin <redacted>
This comes in handy during Scalar upgrades, or when config settings were
messed up by mistake.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 79 +++++++++++++++++++++-----------
contrib/scalar/scalar.txt | 8 ++++
contrib/scalar/t/t9099-scalar.sh | 8 ++++
3 files changed, 67 insertions(+), 28 deletions(-)
Now you have optional settings...but index.version and merge.renames
aren't among them?? Why are those required? (...and to go a step
further; should merge.renames even be off in a merge-ort world?)
I think the idea here is that they are required so that a `scalar
reconfigure` will set them, even if the current enlistment had been
created by a previous Scalar version that had _not_ set those.
And yes, in a merge-ort world, `merge.renames` should probably be forced
to `true`, again because it is in the "Required" section.
Ciao,
Dscho
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 10:59:14
tl;dr: This series contributes the Scalar command to the Git project. This
command provides an opinionated way to create and configure repositories
with a focus on very large repositories.
Changes since v4:
* scalar delete now refuses to delete anything if it was started from
within the enlistment.
* scalar delete releases any handles to the object store before deleting
the enlistment.
* The OBJECTS list in the Makefile will now include Scalar.
* scalar register now supports secondary worktrees, in addition to the
primary worktree.
Changes since v3:
* Moved the "Changes since" section to the top, to make it easier to see
what changed.
* Reworded the commit message of the first patch.
* Removed the [RFC] prefix because I did not hear any objections against
putting this into contrib/.
Changes since v2:
* Adjusted the description of the list command in the manual page , as
suggested by Bagas.
* Addressed two style nits in cmd_run().
* The documentation of git reconfigure -a was improved.
Changes since v1:
* A couple typos were fixed
* The code parsing the output of ls-remote was made more readable
* The indentation used in scalar.txt now consistently uses tabs
* We no longer hard-code core.bare = false when registering with Scalar
Background
==========
Years ago, Microsoft wanted to move the source code of the Windows operating
system to Git. The challenge there was to prove that Git could scale to
massive monorepos. The VFS for Git (formerly GVFS) project was born to take
up that challenge.
The final solution included a virtual filesystem (with both user-mode and
kernel components) and a customized fork of Git for Windows. This solution
contained several key concepts, such as only populating a portion of the
working directory, demand-fetching blobs, and performing periodic repo
maintenance in the background. However, the required kernel drivers made it
difficult to port the solution to other platforms.
But it was realized that many of these key concepts were independent of the
actual VFS and its projection of the working directory. The Scalar project
was created to make that separation, refine the key concepts, and then
extract those features into the new Scalar command.
The present
===========
The Scalar project provides a completely functional non-virtual experience
for monorepos. But why stop there. The Scalar project was designed to be a
self-destructing vehicle to allow those key concepts to be moved into core
Git itself for the benefit of all. For example, partial clone,
sparse-checkout, and background maintenance have already been upstreamed and
removed from Scalar proper. This patch series provides a C-based
implementation of the final remaining portions of the Scalar command. This
will make it easier for users to experiment with the Scalar command. It will
also make it substantially easier to experiment with moving functionality
from Scalar into core Git, while maintaining backwards-compatibility for
existing Scalar users.
The C-based Scalar has been shipped to Scalar users, and can be tested by
any interested reader:
https://github.com/microsoft/git/releases/tag/v2.33.0.vfs.0.0 (it offers a
Git for Windows installer, a macOS package and an Ubuntu package).
Opportunities
=============
Apart from providing the Scalar command, this contribution is intended to
serve as a basis for further mailing list discussions on moving (some of)
these key concepts into the main Git commands.
For example, we previously discussed the idea of a "git big-clone" that does
much of what "scalar clone" is doing. This patch series is a step to make
such functionality exist in the Git code base while we simmer on what such a
"git big-clone" command-line interface would look like.
This is one of many possible ways to do this. Creating a 'git big-clone'
could lock Git into backwards compatibility concerns so it is necessary to
approach such an endeavor with caution. As a discussion starter, the scalar
clone <url> command does roughly this:
1. git clone --sparse --filter=blob:none /src
2. git -C /src sparse-checkout init --cone
3. git -C /src config (many times)
4. git -C /src maintenance start
It is my hope inspire discussions about what parts of Scalar could go into
core Git, and where, and in which form. While we wish to maintain
backwards-compatibility of Scalar's command-line interface (because it is
already in use), by having the Scalar code in the same code base as Git's,
it will be much easier to move functionality without having to maintain
loose version coupling between independently-versioned Scalar and Git. The
tight version-coupling, along with having access to libgit.a also allows the
C-based implementation of Scalar to be much smaller than the original .NET
version.
For example, we might choose in the future to implement, say, git clone
--scale=partial,cone to initialize a partial clone with a cone-sparse
checkout, that would not only be totally doable, and not only would we
already have precedent and data to prove that this actually makes engineers
happy who have to work on ginormous repositories, but we could then also
implement it by moving parts of contrib/scalar/ to builtin/ (where
contrib/scalar/ would then call the built-ins accordingly rather than
hard-coding the defaults itself).
We now also have the opportunity to discuss the merits of Scalar's clone
caching, which is not actually part of this patch series because it is a bit
coupled with the GVFS parts of microsoft/git for the moment, where clones
automatically get registered with a populated alternate repository that is
identified by the URL, meaning: subsequent clones of the same repository are
vastly faster than the first one because they do not actually download the
already-received objects again, they access the cache instead.
Another thing that I could imagine to be discussed at length is the
distinction between enlistment and worktree (where the latter is the actual
Git worktree and usually lives in the src/ subdirectory of the former). This
encourages untracked and ignored files to be placed outside the worktree,
making Git's job much easier. This idea, too, might find its way in one way
or another into Git proper.
These are just a few concepts in Scalar that do not yet have equivalents in
Git. By putting this initial implementation into contrib/, we create a
foundation for future discussions of these concepts.
We plan on updating the recommended config settings in scalar register as
new Git features are available (such as builtin FSMonitor and sparse-index,
when ready). To facilitate upgrading existing Scalar enlistments, their
paths are automatically added to the [scalar] section of the global Git
config, and the scalar reconfigure --all command will process all of them.
Epilogue
========
Now, to address some questions that I imagine every reader has who made it
this far:
* Why not put the Scalar functionality directly into a built-in? Creating a
Git builtin requires scrutiny over every aspect of the feature, which is
difficult to do while also maintaining the command-line interface
contract and expected behavior of the Scalar command (there are existing
users, after all). By having the Scalar command in contrib/, we present a
simple option for users to have these features in the short term while
the Git contributor community decides which bits to absorb into Git
built-ins.
* Why implement the Scalar command in the Git codebase? We ported Scalar to
the microsoft/git fork for several reasons. First, we realized it was
possible now that the core features exist inside Git itself. Second,
compiling Scalar directly within a version of Git allows us to remove a
version compatibility check from each config option that might or might
not apply based on the installed Git version. Finally, this new location
has greatly simplified our release process and the installation process
for users. We now have ways to install Scalar with microsoft/git via
winget, brew, and apt-get. This has been the case since we shipped
v2.32.0 to our users, read: this setup has served us well already.
* Why contribute Scalar to the Git project? We are biased, of course, yet
we do have evidence that the Scalar command is a helpful tool that offers
an simple way to handle huge repositories with ease. By contributing it
to the core Git project, we are able to share it with more users,
especially some users who do not want to install the microsoft/git fork.
We intend to include Scalar as a component in git-for-windows/git, but
are contributing it here first. Further, we think there is benefit to the
Git developer community as this presents an example of how to set certain
defaults that work for large repositories.
* Does this integrate with the built-in FSMonitor yet? No, not yet. I do
have a couple of add-on patch series lined up, one of them being the
integration with the built-in FSMonitor, which obviously has to wait
until the FSMonitor patch series advances further.
Derrick Stolee (4):
scalar: 'register' sets recommended config and starts maintenance
scalar: 'unregister' stops background maintenance
scalar: implement 'scalar list'
scalar: implement the `run` command
Johannes Schindelin (10):
scalar: create a rudimentary executable
scalar: start documenting the command
scalar: create test infrastructure
scalar: let 'unregister' handle a deleted enlistment directory
gracefully
scalar: implement the `clone` subcommand
scalar: teach 'clone' to support the --single-branch option
scalar: allow reconfiguring an existing enlistment
scalar: teach 'reconfigure' to optionally handle all registered
enlistments
scalar: implement the `version` command
scalar: accept -C and -c options before the subcommand
Matthew John Cheetham (1):
scalar: implement the `delete` command
Makefile | 9 +
contrib/scalar/.gitignore | 5 +
contrib/scalar/Makefile | 57 +++
contrib/scalar/scalar.c | 845 +++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 154 ++++++
contrib/scalar/t/Makefile | 78 +++
contrib/scalar/t/t9099-scalar.sh | 88 ++++
7 files changed, 1236 insertions(+)
create mode 100644 contrib/scalar/.gitignore
create mode 100644 contrib/scalar/Makefile
create mode 100644 contrib/scalar/scalar.c
create mode 100644 contrib/scalar/scalar.txt
create mode 100644 contrib/scalar/t/Makefile
create mode 100755 contrib/scalar/t/t9099-scalar.sh
base-commit: ebf3c04b262aa27fbb97f8a0156c2347fecafafb
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1005%2Fdscho%2Fscalar-the-beginning-v5
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1005/dscho/scalar-the-beginning-v5
Pull-Request: https://github.com/gitgitgadget/git/pull/1005
Range-diff vs v4:
1: 852ec003109 ! 1: 7119a8efc21 scalar: create a rudimentary executable
@@ Commit message
Signed-off-by: Johannes Schindelin [off-list ref]
## Makefile ##
-@@ Makefile: endif
- .PHONY: objects
- objects: $(OBJECTS)
-
+@@ Makefile: OBJECTS += $(FUZZ_OBJS)
+ ifndef NO_CURL
+ OBJECTS += http.o http-walker.o remote-curl.o
+ endif
++
+SCALAR_SOURCES := contrib/scalar/scalar.c
+SCALAR_OBJECTS := $(SCALAR_SOURCES:c=o)
+OBJECTS += $(SCALAR_OBJECTS)
+
- dep_files := $(foreach f,$(OBJECTS),$(dir $f).depend/$(notdir $f).d)
- dep_dirs := $(addsuffix .depend,$(sort $(dir $(OBJECTS))))
+ .PHONY: objects
+ objects: $(OBJECTS)
@@ Makefile: $(REMOTE_CURL_PRIMARY): remote-curl.o http.o http-walker.o GIT-LDFLAGS $(GITLIBS
$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
2: 6ab9c7195da = 2: edc1e5f73bd scalar: start documenting the command
3: 14992033d7c = 3: 9eeb66d5b5d scalar: create test infrastructure
4: bbbc4c33390 ! 4: 8ebfa51ae15 scalar: 'register' sets recommended config and starts maintenance
@@ contrib/scalar/scalar.c
+ const size_t len = path.len;
+
+ /* check if currently in enlistment root with src/ workdir */
-+ strbuf_addstr(&path, "/src/.git");
-+ if (is_git_directory(path.buf)) {
-+ strbuf_strip_suffix(&path, "/.git");
-+
++ strbuf_addstr(&path, "/src");
++ if (is_nonbare_repository_dir(&path)) {
+ if (enlistment_root)
+ strbuf_add(enlistment_root, path.buf, len);
+
@@ contrib/scalar/scalar.c
+ strbuf_setlen(&path, len);
+
+ /* check if currently in workdir */
-+ strbuf_addstr(&path, "/.git");
-+ if (is_git_directory(path.buf)) {
-+ strbuf_setlen(&path, len);
-+
++ if (is_nonbare_repository_dir(&path)) {
+ if (enlistment_root) {
+ /*
+ * If the worktree's directory's name is `src`, the enlistment is the
@@ contrib/scalar/scalar.c
+ enlistment_found = 1;
+ break;
+ }
-+
-+ strbuf_setlen(&path, len);
+ } while (strbuf_parent_directory(&path));
+
+ if (!enlistment_found)
5: eadcddb2a9b = 5: 51b5fc577c9 scalar: 'unregister' stops background maintenance
6: c3c2f3a4971 = 6: 0041477374e scalar: let 'unregister' handle a deleted enlistment directory gracefully
7: 90ef9b826b2 = 7: 12efa86e4cb scalar: implement 'scalar list'
8: 79cde4417d8 = 8: 670891d14cc scalar: implement the `clone` subcommand
9: 0acdaeb7396 = 9: 03b8385ebb5 scalar: teach 'clone' to support the --single-branch option
10: 64e3403ac12 = 10: 5a0b3843f98 scalar: implement the `run` command
11: ada242c7c8c = 11: 6d9aaeb05fa scalar: allow reconfiguring an existing enlistment
12: 5c11117da51 = 12: 2967d7f1425 scalar: teach 'reconfigure' to optionally handle all registered enlistments
13: 914c16c7fcd ! 13: 8069cc536fe scalar: implement the `delete` command
@@ contrib/scalar/scalar.c
#include "run-command.h"
#include "refs.h"
+#include "dir.h"
++#include "packfile.h"
/*
* Remove the deepest subdirectory in the provided path string. Path must not
@@ contrib/scalar/scalar.c: static int cmd_unregister(int argc, const char **argv)
+static int cmd_delete(int argc, const char **argv)
+{
++ char *cwd = xgetcwd();
+ struct option options[] = {
+ OPT_END(),
+ };
@@ contrib/scalar/scalar.c: static int cmd_unregister(int argc, const char **argv)
+
+ setup_enlistment_directory(argc, argv, usage, options, &enlistment);
+
-+ res = delete_enlistment(&enlistment);
++ if (dir_inside_of(cwd, enlistment.buf) >= 0)
++ res = error(_("refusing to delete current working directory"));
++ else {
++ close_object_store(the_repository->objects);
++ res = delete_enlistment(&enlistment);
++ }
+ strbuf_release(&enlistment);
++ free(cwd);
+
+ return res;
+}
14: 06995770120 ! 14: 2ecfaa5d0fe scalar: implement the `version` command
@@ Commit message
## contrib/scalar/scalar.c ##
@@
- #include "run-command.h"
#include "refs.h"
#include "dir.h"
+ #include "packfile.h"
+#include "help.h"
/*
15: 7539725bb4f = 15: f81e8b3bcf1 scalar: accept -C and -c options before the subcommand
--
gitgitgadget
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 10:59:15
From: Johannes Schindelin <redacted>
The idea of Scalar (https://github.com/microsoft/scalar), and before
that, of VFS for Git, has always been to prove that Git _can_ scale, and
to upstream whatever strategies have been demonstrated to help.
With this patch, we start the journey from that C# project to move what
is left to Git's own `contrib/` directory, reimplementing it in pure C,
with the intention to facilitate integrating the functionality into core
Git all while maintaining backwards-compatibility for existing Scalar
users (which will be much easier when both live in the same worktree).
It has always been the plan to contribute all of the proven strategies
back to core Git.
For example, while the virtual filesystem provided by VFS for Git helped
the team developing the Windows operating system to move onto Git, while
trying to upstream it we realized that it cannot be done: getting the
virtual filesystem to work (which we only managed to implement fully on
Windows, but not on, say, macOS or Linux), and the required server-side
support for the GVFS protocol, made this not quite feasible.
The Scalar project learned from that and tackled the problem with
different tactics: instead of pretending to Git that the working
directory is fully populated, it _specifically_ teaches Git about
partial clone (which is based on VFS for Git's cache server), about
sparse checkout (which VFS for Git tried to do transparently, in the
file system layer), and regularly runs maintenance tasks to keep the
repository in a healthy state.
With partial clone, sparse checkout and `git maintenance` having been
upstreamed, there is little left that `scalar.exe` does which `git.exe`
cannot do. One such thing is that `scalar clone <url>` will
automatically set up a partial, sparse clone, and configure
known-helpful settings from the start.
So let's bring this convenience into Git's tree.
The idea here is that you can (optionally) build Scalar via
make -C contrib/scalar/Makefile
This will build the `scalar` executable and put it into the
contrib/scalar/ subdirectory.
The slightly awkward addition of the `contrib/scalar/*` bits to the
top-level `Makefile` are actually really required: we want to link to
`libgit.a`, which means that we will need to use the very same `CFLAGS`
and `LDFLAGS` as the rest of Git.
An early development version of this patch tried to replicate all the
conditional code in `contrib/scalar/Makefile` (e.g. `NO_POLL`) just like
`contrib/svn-fe/Makefile` used to do before it was retired. It turned
out to be quite the whack-a-mole game: the SHA-1-related flags, the
flags enabling/disabling `compat/poll/`, `compat/regex/`,
`compat/win32mmap.c` & friends depending on the current platform... To
put it mildly: it was a major mess.
Instead, this patch makes minimal changes to the top-level `Makefile` so
that the bits in `contrib/scalar/` can be compiled and linked, and
adds a `contrib/scalar/Makefile` that uses the top-level `Makefile` in a
most minimal way to do the actual compiling.
Note: With this commit, we only establish the infrastructure, no
Scalar functionality is implemented yet; We will do that incrementally
over the next few commits.
Signed-off-by: Johannes Schindelin <redacted>
---
Makefile | 9 +++++++++
contrib/scalar/.gitignore | 2 ++
contrib/scalar/Makefile | 34 ++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.c | 36 ++++++++++++++++++++++++++++++++++++
4 files changed, 81 insertions(+)
create mode 100644 contrib/scalar/.gitignore
create mode 100644 contrib/scalar/Makefile
create mode 100644 contrib/scalar/scalar.c
@@ -0,0 +1,34 @@+QUIET_SUBDIR0=+$(MAKE)-C# space to separate -C and subdir+QUIET_SUBDIR1=++ifneq ($(findstring s,$(MAKEFLAGS)),s)+ifndef V+QUIET_SUBDIR0=+@subdir=+QUIET_SUBDIR1=;$(NO_SUBDIR)echo' 'SUBDIR$$subdir;\+$(MAKE)$(PRINT_DIR)-C$$subdir+else+exportV+endif+endif++all:++include ../../config.mak.uname+-include ../../config.mak.autogen+-include ../../config.mak++TARGETS=scalar$(X)scalar.o+GITLIBS=../../common-main.o../../libgit.a../../xdiff/lib.a++all:scalar$X++$(GITLIBS):+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(subst../../,,$@)++$(TARGETS):$(GITLIBS)scalar.c+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(patsubst%,contrib/scalar/%,$@)++clean:+$(RM)$(TARGETS)++.PHONY:allcleanFORCE
@@ -30,5 +31,16 @@ $(TARGETS): $(GITLIBS) scalar.cclean:$(RM)$(TARGETS)+$(RM)scalar.1scalar.htmlscalar.xml-.PHONY:allcleanFORCE+docs:scalar.htmlscalar.1++scalar.html:|scalar.1 # prevent them from trying to build `doc.dep` in parallel++scalar.html scalar.1:scalar.txt+$(QUIET_SUBDIR0)../../Documentation$(QUIET_SUBDIR1)\+MAN_TXT=../contrib/scalar/scalar.txt\+../contrib/scalar/$@+$(QUIET)testscalar.1!="$@"||mv../../Documentation/$@.++.PHONY:allcleandocsFORCE
@@ -0,0 +1,38 @@+scalar(1)+=========++NAME+----+scalar - an opinionated repository management tool++SYNOPSIS+--------+[verse]+scalar <command> [<options>]++DESCRIPTION+-----------++Scalar is an opinionated repository management tool. By creating new+repositories or registering existing repositories with Scalar, your Git+experience will speed up. Scalar sets advanced Git config settings,+maintains your repositories in the background, and helps reduce data sent+across the network.++An important Scalar concept is the enlistment: this is the top-level directory+of the project. It usually contains the subdirectory `src/` which is a Git+worktree. This encourages the separation between tracked files (inside `src/`)+and untracked files, such as build artifacts (outside `src/`). When registering+an existing Git worktree with Scalar whose name is not `src`, the enlistment+will be identical to the worktree.++The `scalar` command implements various subcommands, and different options+depending on the subcommand.++SEE ALSO+--------+linkgit:git-maintenance[1].++Scalar+---+Associated with the linkgit:git[1] suite
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 10:59:23
From: Johannes Schindelin <redacted>
To test the Scalar command, create a test script in contrib/scalar/t
that is executed as `make -C contrib/scalar test`. Since Scalar has no
meaningful capabilities yet, the only test is rather simple. We will add
more tests in subsequent commits that introduce corresponding, new
functionality.
Note: this test script is intended to test `scalar` only lightly, even
after all of the functionality is implemented.
A more comprehensive functional (or: integration) test suite can be
found at https://github.com/microsoft/scalar; It is used in the workflow
https://github.com/microsoft/git/blob/HEAD/.github/workflows/scalar-functional-tests.yml
in Microsoft's Git fork. This test suite performs end-to-end tests with
a real remote repository, and is run as part of the regular CI builds.
Since those tests require some functionality supported only by
Microsoft's Git fork ("GVFS protocol"), there is no intention to port
that fuller test suite to `contrib/scalar/`.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/Makefile | 17 +++++--
contrib/scalar/t/Makefile | 78 ++++++++++++++++++++++++++++++++
contrib/scalar/t/t9099-scalar.sh | 17 +++++++
3 files changed, 109 insertions(+), 3 deletions(-)
create mode 100644 contrib/scalar/t/Makefile
create mode 100755 contrib/scalar/t/t9099-scalar.sh
@@ -21,7 +22,7 @@ include ../../config.mak.unameTARGETS=scalar$(X)scalar.oGITLIBS=../../common-main.o../../libgit.a../../xdiff/lib.a-all:scalar$X+all:scalar$X ../../bin-wrappers/scalar$(GITLIBS):$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(subst../../,,$@)
@@ -30,9 +31,19 @@ $(TARGETS): $(GITLIBS) scalar.c$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(patsubst%,contrib/scalar/%,$@)clean:-$(RM)$(TARGETS)+$(RM)$(TARGETS)../../bin-wrappers/scalar$(RM)scalar.1scalar.htmlscalar.xml+../../bin-wrappers/scalar:../../wrap-for-bin.shMakefile+@mkdir-p../../bin-wrappers+$(QUIET_GEN)sed-e'1s|#!.*/sh|#!$(SHELL_PATH_SQ)|'\+-e's|@@BUILD_DIR@@|$(shell cd ../.. && pwd)|'\+-e's|@@PROG@@|contrib/scalar/scalar$(X)|'<$<>$@&&\+chmod+x$@++test:all+$(MAKE)-Ct+docs:scalar.htmlscalar.1scalar.html:|scalar.1 # prevent them from trying to build `doc.dep` in parallel
@@ -0,0 +1,17 @@+#!/bin/sh++test_description='test the `scalar` command'++TEST_DIRECTORY=$PWD/../../../t+exportTEST_DIRECTORY++# Make it work with --no-bin-wrappers+PATH=$PWD/..:$PATH++.../../../t/test-lib.sh++test_expect_success'scalar shows a usage''+test_expect_code129scalar-h+'++test_done
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-10-07 10:59:32
From: Derrick Stolee <redacted>
Let's start implementing the `register` command. With this commit,
recommended settings are configured upon `scalar register`, and Git's
background maintenance is started.
The recommended config settings may very well change in the future. For
example, once the built-in FSMonitor is available, we will want to
enable it upon `scalar register`. For that reason, we explicitly support
running `scalar register` in an already-registered enlistment.
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 248 ++++++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 18 ++-
2 files changed, 265 insertions(+), 1 deletion(-)
@@ -5,11 +5,259 @@#include"cache.h"#include"gettext.h"#include"parse-options.h"+#include"config.h"+#include"run-command.h"++/*+*Removethedeepestsubdirectoryintheprovidedpathstring.Pathmustnot+*includeatrailingpathseparator.Returns1ifparentdirectoryfound,+*otherwise0.+*/+staticintstrbuf_parent_directory(structstrbuf*buf)+{+size_tlen=buf->len;+size_toffset=offset_1st_component(buf->buf);+char*path_sep=find_last_dir_sep(buf->buf+offset);+strbuf_setlen(buf,path_sep?path_sep-buf->buf:offset);++returnbuf->len<len;+}++staticvoidsetup_enlistment_directory(intargc,constchar**argv,+constchar*const*usagestr,+conststructoption*options,+structstrbuf*enlistment_root)+{+structstrbufpath=STRBUF_INIT;+char*root;+intenlistment_found=0;++if(startup_info->have_repository)+BUG("gitdir already set up?!?");++if(argc>1)+usage_with_options(usagestr,options);++/* find the worktree, determine its corresponding root */+if(argc==1)+strbuf_add_absolute_path(&path,argv[0]);+elseif(strbuf_getcwd(&path)<0)+die(_("need a working directory"));++strbuf_trim_trailing_dir_sep(&path);+do{+constsize_tlen=path.len;++/* check if currently in enlistment root with src/ workdir */+strbuf_addstr(&path,"/src");+if(is_nonbare_repository_dir(&path)){+if(enlistment_root)+strbuf_add(enlistment_root,path.buf,len);++enlistment_found=1;+break;+}++/* reset to original path */+strbuf_setlen(&path,len);++/* check if currently in workdir */+if(is_nonbare_repository_dir(&path)){+if(enlistment_root){+/*+*Iftheworktree'sdirectory'snameis`src`,theenlistmentisthe+*parentdirectory,otherwiseitisidenticaltotheworktree.+*/+root=strip_path_suffix(path.buf,"src");+strbuf_addstr(enlistment_root,root?root:path.buf);+free(root);+}++enlistment_found=1;+break;+}+}while(strbuf_parent_directory(&path));++if(!enlistment_found)+die(_("could not find enlistment root"));++if(chdir(path.buf)<0)+die_errno(_("could not switch to '%s'"),path.buf);++strbuf_release(&path);+setup_git_directory();+}++staticintrun_git(constchar*arg,...)+{+structstrvecargv=STRVEC_INIT;+va_listargs;+constchar*p;+intres;++va_start(args,arg);+strvec_push(&argv,arg);+while((p=va_arg(args,constchar*)))+strvec_push(&argv,p);+va_end(args);++res=run_command_v_opt(argv.v,RUN_GIT_CMD);++strvec_clear(&argv);+returnres;+}++staticintset_recommended_config(void)+{+struct{+constchar*key;+constchar*value;+}config[]={+{"am.keepCR","true"},+{"core.FSCache","true"},+{"core.multiPackIndex","true"},+{"core.preloadIndex","true"},+#ifndef WIN32+{"core.untrackedCache","true"},+#else+/*+*Unfortunately,Scalar'sFunctionalTestsdemonstrated+*thattheuntrackedcachefeatureisunreliableonWindows+*(whichisabummerbecausethatplatformwouldbenefitthe+*mostfromit).Forsomereason,freshlycreatedfilesseem+*nottoupdatethedirectory's`lastModified`time+*immediately,buttheuntrackedcachewouldneedtorelyon+*that.+*+*Therefore,withasadheart,wedisablethisveryuseful+*featureonWindows.+*/+{"core.untrackedCache","false"},+#endif+{"core.logAllRefUpdates","true"},+{"credential.https://dev.azure.com.useHttpPath","true"},+{"credential.validate","false"},/* GCM4W-only */+{"gc.auto","0"},+{"gui.GCWarning","false"},+{"index.threads","true"},+{"index.version","4"},+{"merge.stat","false"},+{"merge.renames","false"},+{"pack.useBitmaps","false"},+{"pack.useSparse","true"},+{"receive.autoGC","false"},+{"reset.quiet","true"},+{"feature.manyFiles","false"},+{"feature.experimental","false"},+{"fetch.unpackLimit","1"},+{"fetch.writeCommitGraph","false"},+#ifdef WIN32+{"http.sslBackend","schannel"},+#endif+{"status.aheadBehind","false"},+{"commitGraph.generationVersion","1"},+{"core.autoCRLF","false"},+{"core.safeCRLF","false"},+{NULL,NULL},+};+inti;+char*value;++for(i=0;config[i].key;i++){+if(git_config_get_string(config[i].key,&value)){+trace2_data_string("scalar",the_repository,config[i].key,"created");+if(git_config_set_gently(config[i].key,+config[i].value)<0)+returnerror(_("could not configure %s=%s"),+config[i].key,config[i].value);+}else{+trace2_data_string("scalar",the_repository,config[i].key,"exists");+free(value);+}+}++/*+*The`log.excludeDecoration`settingisspecialbecauseitallows+*formultiplevalues.+*/+if(git_config_get_string("log.excludeDecoration",&value)){+trace2_data_string("scalar",the_repository,+"log.excludeDecoration","created");+if(git_config_set_multivar_gently("log.excludeDecoration",+"refs/prefetch/*",+CONFIG_REGEX_NONE,0))+returnerror(_("could not configure "+"log.excludeDecoration"));+}else{+trace2_data_string("scalar",the_repository,+"log.excludeDecoration","exists");+free(value);+}++return0;+}++staticintstart_maintenance(void)+{+returnrun_git("maintenance","start",NULL);+}++staticintadd_enlistment(void)+{+intres;++if(!the_repository->worktree)+die(_("Scalar enlistments require a worktree"));++res=run_git("config","--global","--get","--fixed-value",+"scalar.repo",the_repository->worktree,NULL);++/*+*Ifthesettingisalreadythere,thendonothing.+*/+if(!res)+return0;++returnrun_git("config","--global","--add",+"scalar.repo",the_repository->worktree,NULL);+}++staticintregister_dir(void)+{+intres=add_enlistment();++if(!res)+res=set_recommended_config();++if(!res)+res=start_maintenance();++returnres;+}++staticintcmd_register(intargc,constchar**argv)+{+structoptionoptions[]={+OPT_END(),+};+constchar*constusage[]={+N_("scalar register [<enlistment>]"),+NULL+};++argc=parse_options(argc,argv,NULL,options,+usage,0);++setup_enlistment_directory(argc,argv,usage,options,NULL);++returnregister_dir();+}staticstruct{constchar*name;int(*fn)(int,constchar**);}builtins[]={+{"register",cmd_register},{NULL,NULL},};
@@ -29,6 +29,22 @@ will be identical to the worktree. The `scalar` command implements various subcommands, and different options depending on the subcommand.+COMMANDS+--------++Register+~~~~~~~~++register [<enlistment>]::+ Adds the enlistment's repository to the list of registered repositories+ and starts background maintenance. If `<enlistment>` is not provided,+ then the enlistment associated with the current working directory is+ registered.+++Note: when this subcommand is called in a worktree that is called `src/`, its+parent directory is considered to be the Scalar enlistment. If the worktree is+_not_ called `src/`, it itself will be considered to be the Scalar enlistment.+ SEE ALSO -------- linkgit:git-maintenance[1].
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-10-07 10:59:35
From: Derrick Stolee <redacted>
Just like `scalar register` starts the scheduled background maintenance,
`scalar unregister` stops it. Note that we use `git maintenance start`
in `scalar register`, but we do not use `git maintenance stop` in
`scalar unregister`: this would stop maintenance for _all_ repositories,
not just for the one we want to unregister.
The `unregister` command also removes the corresponding entry from the
`[scalar]` section in the global Git config.
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 50 ++++++++++++++++++++++++++++++++-------
contrib/scalar/scalar.txt | 8 +++++++
2 files changed, 50 insertions(+), 8 deletions(-)
@@ -45,6 +46,13 @@ Note: when this subcommand is called in a worktree that is called `src/`, its parent directory is considered to be the Scalar enlistment. If the worktree is _not_ called `src/`, it itself will be considered to be the Scalar enlistment.+Unregister+~~~~~~~~~~++unregister [<enlistment>]::+ Remove the specified repository from the list of repositories+ registered with Scalar and stop the scheduled background maintenance.+ SEE ALSO -------- linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 10:59:41
From: Johannes Schindelin <redacted>
When a user deleted an enlistment manually, let's be generous and
_still_ unregister it.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 46 ++++++++++++++++++++++++++++++++
contrib/scalar/t/t9099-scalar.sh | 15 +++++++++++
2 files changed, 61 insertions(+)
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-10-07 10:59:42
From: Derrick Stolee <redacted>
The produced list simply consists of those repositories registered under
the multi-valued `scalar.repo` config setting in the user's Git config.
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 11 +++++++++++
contrib/scalar/scalar.txt | 11 ++++++++++-
2 files changed, 21 insertions(+), 1 deletion(-)
@@ -250,6 +250,16 @@ static int unregister_dir(void)returnres;}+staticintcmd_list(intargc,constchar**argv)+{+if(argc!=1)+die(_("`scalar list` does not take arguments"));++if(run_git("config","--global","--get-all","scalar.repo",NULL)<0)+return-1;+return0;+}+staticintcmd_register(intargc,constchar**argv){structoptionoptions[]={
@@ -28,11 +29,19 @@ an existing Git worktree with Scalar whose name is not `src`, the enlistment will be identical to the worktree. The `scalar` command implements various subcommands, and different options-depending on the subcommand.+depending on the subcommand. With the exception of `list`, all subcommands+expect to be run in an enlistment. COMMANDS --------+List+~~~~++list::+ List enlistments that are currently registered by Scalar. This+ subcommand does not need to be run inside an enlistment.+ Register ~~~~~~~~
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 10:59:43
From: Johannes Schindelin <redacted>
This implements Scalar's opinionated `clone` command: it tries to use a
partial clone and sets up a sparse checkout by default. In contrast to
`git clone`, `scalar clone` sets up the worktree in the `src/`
subdirectory, to encourage a separation between the source files and the
build output (which helps Git tremendously because it avoids untracked
files that have to be specifically ignored when refreshing the index).
Also, it registers the repository for regular, scheduled maintenance,
and configures a flurry of configuration settings based on the
experience and experiments of the Microsoft Windows and the Microsoft
Office development teams.
Note: since the `scalar clone` command is by far the most commonly
called `scalar` subcommand, we document it at the top of the manual
page.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 201 +++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 31 ++++-
contrib/scalar/t/t9099-scalar.sh | 32 +++++
3 files changed, 261 insertions(+), 3 deletions(-)
@@ -250,6 +251,205 @@ static int unregister_dir(void)returnres;}+/* printf-style interface, expects `<key>=<value>` argument */+staticintset_config(constchar*fmt,...)+{+structstrbufbuf=STRBUF_INIT;+char*value;+intres;+va_listargs;++va_start(args,fmt);+strbuf_vaddf(&buf,fmt,args);+va_end(args);++value=strchr(buf.buf,'=');+if(value)+*(value++)='\0';+res=git_config_set_gently(buf.buf,value);+strbuf_release(&buf);++returnres;+}++staticchar*remote_default_branch(constchar*url)+{+structchild_processcp=CHILD_PROCESS_INIT;+structstrbufout=STRBUF_INIT;++cp.git_cmd=1;+strvec_pushl(&cp.args,"ls-remote","--symref",url,"HEAD",NULL);+if(!pipe_command(&cp,NULL,0,&out,0,NULL,0)){+constchar*line=out.buf;++while(*line){+constchar*eol=strchrnul(line,'\n'),*p;+size_tlen=eol-line;+char*branch;++if(!skip_prefix(line,"ref: ",&p)||+!strip_suffix_mem(line,&len,"\tHEAD")){+line=eol+(*eol=='\n');+continue;+}++eol=line+len;+if(skip_prefix(p,"refs/heads/",&p)){+branch=xstrndup(p,eol-p);+strbuf_release(&out);+returnbranch;+}++error(_("remote HEAD is not a branch: '%.*s'"),+(int)(eol-p),p);+strbuf_release(&out);+returnNULL;+}+}+warning(_("failed to get default branch name from remote; "+"using local default"));+strbuf_reset(&out);++child_process_init(&cp);+cp.git_cmd=1;+strvec_pushl(&cp.args,"symbolic-ref","--short","HEAD",NULL);+if(!pipe_command(&cp,NULL,0,&out,0,NULL,0)){+strbuf_trim(&out);+returnstrbuf_detach(&out,NULL);+}++strbuf_release(&out);+error(_("failed to get default branch name"));+returnNULL;+}++staticintcmd_clone(intargc,constchar**argv)+{+constchar*branch=NULL;+intfull_clone=0;+structoptionclone_options[]={+OPT_STRING('b',"branch",&branch,N_("<branch>"),+N_("branch to checkout after clone")),+OPT_BOOL(0,"full-clone",&full_clone,+N_("when cloning, create full working directory")),+OPT_END(),+};+constchar*constclone_usage[]={+N_("scalar clone [<options>] [--] <repo> [<dir>]"),+NULL+};+constchar*url;+char*enlistment=NULL,*dir=NULL;+structstrbufbuf=STRBUF_INIT;+intres;++argc=parse_options(argc,argv,NULL,clone_options,clone_usage,0);++if(argc==2){+url=argv[0];+enlistment=xstrdup(argv[1]);+}elseif(argc==1){+url=argv[0];++strbuf_addstr(&buf,url);+/* Strip trailing slashes, if any */+while(buf.len>0&&is_dir_sep(buf.buf[buf.len-1]))+strbuf_setlen(&buf,buf.len-1);+/* Strip suffix `.git`, if any */+strbuf_strip_suffix(&buf,".git");++enlistment=find_last_dir_sep(buf.buf);+if(!enlistment){+die(_("cannot deduce worktree name from '%s'"),url);+}+enlistment=xstrdup(enlistment+1);+}else{+usage_msg_opt(_("You must specify a repository to clone."),+clone_usage,clone_options);+}++if(is_directory(enlistment))+die(_("directory '%s' exists already"),enlistment);++dir=xstrfmt("%s/src",enlistment);++strbuf_reset(&buf);+if(branch)+strbuf_addf(&buf,"init.defaultBranch=%s",branch);+else{+char*b=repo_default_branch_name(the_repository,1);+strbuf_addf(&buf,"init.defaultBranch=%s",b);+free(b);+}++if((res=run_git("-c",buf.buf,"init","--",dir,NULL)))+gotocleanup;++if(chdir(dir)<0){+res=error_errno(_("could not switch to '%s'"),dir);+gotocleanup;+}++setup_git_directory();++/* common-main already logs `argv` */+trace2_def_repo(the_repository);++if(!branch&&!(branch=remote_default_branch(url))){+res=error(_("failed to get default branch for '%s'"),url);+gotocleanup;+}++if(set_config("remote.origin.url=%s",url)||+set_config("remote.origin.fetch="+"+refs/heads/*:refs/remotes/origin/*")||+set_config("remote.origin.promisor=true")||+set_config("remote.origin.partialCloneFilter=blob:none")){+res=error(_("could not configure remote in '%s'"),dir);+gotocleanup;+}++if(!full_clone&&+(res=run_git("sparse-checkout","init","--cone",NULL)))+gotocleanup;++if(set_recommended_config())+returnerror(_("could not configure '%s'"),dir);++if((res=run_git("fetch","--quiet","origin",NULL))){+warning(_("partial clone failed; attempting full clone"));++if(set_config("remote.origin.promisor")||+set_config("remote.origin.partialCloneFilter")){+res=error(_("could not configure for full clone"));+gotocleanup;+}++if((res=run_git("fetch","--quiet","origin",NULL)))+gotocleanup;+}++if((res=set_config("branch.%s.remote=origin",branch)))+gotocleanup;+if((res=set_config("branch.%s.merge=refs/heads/%s",+branch,branch)))+gotocleanup;++strbuf_reset(&buf);+strbuf_addf(&buf,"origin/%s",branch);+res=run_git("checkout","-f","-t",buf.buf,NULL);+if(res)+gotocleanup;++res=register_dir();++cleanup:+free(enlistment);+free(dir);+strbuf_release(&buf);+returnres;+}+staticintcmd_list(intargc,constchar**argv){if(argc!=1)
@@ -29,12 +30,36 @@ an existing Git worktree with Scalar whose name is not `src`, the enlistment will be identical to the worktree. The `scalar` command implements various subcommands, and different options-depending on the subcommand. With the exception of `list`, all subcommands-expect to be run in an enlistment.+depending on the subcommand. With the exception of `clone` and `list`, all+subcommands expect to be run in an enlistment. COMMANDS --------+Clone+~~~~~++clone [<options>] <url> [<enlistment>]::+ Clones the specified repository, similar to linkgit:git-clone[1]. By+ default, only commit and tree objects are cloned. Once finished, the+ worktree is located at `<enlistment>/src`.+++The sparse-checkout feature is enabled (except when run with `--full-clone`)+and the only files present are those in the top-level directory. Use+`git sparse-checkout set` to expand the set of directories you want to see,+or `git sparse-checkout disable` to expand to all files (see+linkgit:git-sparse-checkout[1] for more details). You can explore the+subdirectories outside your sparse-checkout by using `git ls-tree HEAD`.++-b <name>::+--branch <name>::+ Instead of checking out the branch pointed to by the cloned+ repository's HEAD, check out the `<name>` branch instead.++--[no-]full-clone::+ A sparse-checkout is initialized by default. This behavior can be+ turned off via `--full-clone`.+ List ~~~~
@@ -64,7 +89,7 @@ unregister [<enlistment>]:: SEE ALSO ---------linkgit:git-maintenance[1].+linkgit:git-clone[1], linkgit:git-maintenance[1]. Scalar ---
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-10-07 10:59:44
From: Derrick Stolee <redacted>
Note: this subcommand is provided primarily for backwards-compatibility,
for existing Scalar uses. It is mostly just a shim for `git
maintenance`, mapping task names from the way Scalar called them to the
way Git calls them.
The reason why those names differ? The background maintenance was first
implemented in Scalar, and when it was contributed as a patch series
implementing the `git maintenance` command, reviewers suggested better
names, those suggestions were accepted before the patches were
integrated into core Git.
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 64 +++++++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 19 ++++++++++++
2 files changed, 83 insertions(+)
@@ -483,6 +483,69 @@ static int cmd_register(int argc, const char **argv)returnregister_dir();}+staticintcmd_run(intargc,constchar**argv)+{+structoptionoptions[]={+OPT_END(),+};+struct{+constchar*arg,*task;+}tasks[]={+{"config",NULL},+{"commit-graph","commit-graph"},+{"fetch","prefetch"},+{"loose-objects","loose-objects"},+{"pack-files","incremental-repack"},+{NULL,NULL}+};+structstrbufbuf=STRBUF_INIT;+constchar*usagestr[]={NULL,NULL};+inti;++strbuf_addstr(&buf,N_("scalar run <task> [<enlistment>]\nTasks:\n"));+for(i=0;tasks[i].arg;i++)+strbuf_addf(&buf,"\t%s\n",tasks[i].arg);+usagestr[0]=buf.buf;++argc=parse_options(argc,argv,NULL,options,+usagestr,0);++if(!argc)+usage_with_options(usagestr,options);++if(!strcmp("all",argv[0])){+i=-1;+}else{+for(i=0;tasks[i].arg&&strcmp(tasks[i].arg,argv[0]);i++)+;/* keep looking for the task */++if(i>0&&!tasks[i].arg){+error(_("no such task: '%s'"),argv[0]);+usage_with_options(usagestr,options);+}+}++argc--;+argv++;+setup_enlistment_directory(argc,argv,usagestr,options,NULL);+strbuf_release(&buf);++if(i==0)+returnregister_dir();++if(i>0)+returnrun_git("maintenance","run",+"--task",tasks[i].task,NULL);++if(register_dir())+return-1;+for(i=1;tasks[i].arg;i++)+if(run_git("maintenance","run",+"--task",tasks[i].task,NULL))+return-1;+return0;+}+staticintremove_deleted_enlistment(structstrbuf*path){intres=0;
@@ -97,6 +98,24 @@ unregister [<enlistment>]:: Remove the specified repository from the list of repositories registered with Scalar and stop the scheduled background maintenance.+Run+~~~++scalar run ( all | config | commit-graph | fetch | loose-objects | pack-files ) [<enlistment>]::+ Run the given maintenance task (or all tasks, if `all` was specified).+ Except for `all` and `config`, this subcommand simply hands off to+ linkgit:git-maintenance[1] (mapping `fetch` to `prefetch` and+ `pack-files` to `incremental-repack`).+++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.+++The `config` 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 `scalar clone`+automatically, explicit invocations of this task are rarely needed.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 10:59:45
From: Johannes Schindelin <redacted>
Just like `git clone`, the `scalar clone` command now also offers to
restrict the clone to a single branch.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 9 +++++++--
contrib/scalar/scalar.txt | 12 +++++++++++-
contrib/scalar/t/t9099-scalar.sh | 6 +++++-
3 files changed, 23 insertions(+), 4 deletions(-)
@@ -326,12 +326,15 @@ static char *remote_default_branch(const char *url)staticintcmd_clone(intargc,constchar**argv){constchar*branch=NULL;-intfull_clone=0;+intfull_clone=0,single_branch=0;structoptionclone_options[]={OPT_STRING('b',"branch",&branch,N_("<branch>"),N_("branch to checkout after clone")),OPT_BOOL(0,"full-clone",&full_clone,N_("when cloning, create full working directory")),+OPT_BOOL(0,"single-branch",&single_branch,+N_("only download metadata for the branch that will "+"be checked out")),OPT_END(),};constchar*constclone_usage[]={
@@ -402,7 +405,9 @@ static int cmd_clone(int argc, const char **argv)if(set_config("remote.origin.url=%s",url)||set_config("remote.origin.fetch="-"+refs/heads/*:refs/remotes/origin/*")||+"+refs/heads/%s:refs/remotes/origin/%s",+single_branch?branch:"*",+single_branch?branch:"*")||set_config("remote.origin.promisor=true")||set_config("remote.origin.partialCloneFilter=blob:none")){res=error(_("could not configure remote in '%s'"),dir);
@@ -56,6 +56,16 @@ subdirectories outside your sparse-checkout by using `git ls-tree HEAD`. Instead of checking out the branch pointed to by the cloned repository's HEAD, check out the `<name>` branch instead.+--[no-]single-branch::+ Clone only the history leading to the tip of a single branch, either+ specified by the `--branch` option or the primary branch remote's+ `HEAD` points at.+++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+`--single-branch` clone was made, no remote-tracking branch is created.+ --[no-]full-clone:: A sparse-checkout is initialized by default. This behavior can be turned off via `--full-clone`.
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 10:59:48
From: Johannes Schindelin <redacted>
This comes in handy during Scalar upgrades, or when config settings were
messed up by mistake.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 79 +++++++++++++++++++++-----------
contrib/scalar/scalar.txt | 8 ++++
contrib/scalar/t/t9099-scalar.sh | 8 ++++
3 files changed, 67 insertions(+), 28 deletions(-)
@@ -116,6 +117,13 @@ opinionated default settings that make Git work more efficiently with large repositories. As this task is run as part of `scalar clone` automatically, explicit invocations of this task are rarely needed.+Reconfigure+~~~~~~~~~~~++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.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 10:59:54
From: Johannes Schindelin <redacted>
The .NET version of Scalar has a `version` command. This was necessary
because it was versioned independently of Git.
Since Scalar is now tightly coupled with Git, it does not make sense for
them to show different versions. Therefore, it shows the same output as
`git version`. For backwards-compatibility with the .NET version,
`scalar version` prints to `stderr`, though (`git version` prints to
`stdout` instead).
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 10:59:59
From: Johannes Schindelin <redacted>
After a Scalar upgrade, it can come in really handy if there is an easy
way to reconfigure all Scalar enlistments. This new option offers this
functionality.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 61 ++++++++++++++++++++++++++++++--
contrib/scalar/scalar.txt | 9 +++--
contrib/scalar/t/t9099-scalar.sh | 3 ++
3 files changed, 67 insertions(+), 6 deletions(-)
@@ -487,22 +487,77 @@ static int cmd_register(int argc, const char **argv)returnregister_dir();}+staticintget_scalar_repos(constchar*key,constchar*value,void*data)+{+structstring_list*list=data;++if(!strcmp(key,"scalar.repo"))+string_list_append(list,value);++return0;+}+staticintcmd_reconfigure(intargc,constchar**argv){+intall=0;structoptionoptions[]={+OPT_BOOL('a',"all",&all,+N_("reconfigure all registered enlistments")),OPT_END(),};constchar*constusage[]={-N_("scalar reconfigure [<enlistment>]"),+N_("scalar reconfigure [--all | <enlistment>]"),NULL};+structstring_listscalar_repos=STRING_LIST_INIT_DUP;+inti,res=0;+structrepositoryr={NULL};+structstrbufcommondir=STRBUF_INIT,gitdir=STRBUF_INIT;argc=parse_options(argc,argv,NULL,options,usage,0);-setup_enlistment_directory(argc,argv,usage,options,NULL);+if(!all){+setup_enlistment_directory(argc,argv,usage,options,NULL);++returnset_recommended_config(1);+}++if(argc>0)+usage_msg_opt(_("--all or <enlistment>, but not both"),+usage,options);++git_config(get_scalar_repos,&scalar_repos);-returnset_recommended_config(1);+for(i=0;i<scalar_repos.nr;i++){+constchar*dir=scalar_repos.items[i].string;++strbuf_reset(&commondir);+strbuf_reset(&gitdir);++if(chdir(dir)<0){+warning_errno(_("could not switch to '%s'"),dir);+res=-1;+}elseif(discover_git_directory(&commondir,&gitdir)<0){+warning_errno(_("git repository gone in '%s'"),dir);+res=-1;+}else{+git_config_clear();++the_repository=&r;+r.commondir=commondir.buf;+r.gitdir=gitdir.buf;++if(set_recommended_config(1)<0)+res=-1;+}+}++string_list_clear(&scalar_repos,1);+strbuf_release(&commondir);+strbuf_release(&gitdir);++returnres;}staticintcmd_run(intargc,constchar**argv)
@@ -32,8 +32,8 @@ an existing Git worktree with Scalar whose name is not `src`, the enlistment will be identical to the worktree. The `scalar` command implements various subcommands, and different options-depending on the subcommand. With the exception of `clone` and `list`, all-subcommands expect to be run in an enlistment.+depending on the subcommand. With the exception of `clone`, `list` and+`reconfigure --all`, all subcommands expect to be run in an enlistment. COMMANDS --------
@@ -124,6 +124,9 @@ 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.+With the `--all` option, all enlistments currently registered with Scalar+will be reconfigured. Use this option after each Scalar upgrade.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Matthew John Cheetham via GitGitGadget <hidden> Date: 2021-10-07 11:00:01
From: Matthew John Cheetham <redacted>
Delete an enlistment by first unregistering the repository and then
deleting the enlistment directory (usually the directory containing the
worktree `src/` directory).
On Windows, if the current directory is inside the enlistment's
directory, change to the parent of the enlistment directory, to allow us
to delete the enlistment (directories used by processes e.g. as current
working directories cannot be deleted on Windows).
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Matthew John Cheetham <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 63 ++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 8 ++++
contrib/scalar/t/t9099-scalar.sh | 9 +++++
3 files changed, 80 insertions(+)
@@ -327,6 +329,33 @@ static char *remote_default_branch(const char *url)returnNULL;}+staticintdelete_enlistment(structstrbuf*enlistment)+{+#ifdef WIN32+structstrbufparent=STRBUF_INIT;+#endif++if(unregister_dir())+die(_("failed to unregister repository"));++#ifdef WIN32+/*+*Changethecurrentdirectorytooneoutsideoftheenlistmentso+*thatwemaydeleteeverythingunderneathit.+*/+strbuf_addbuf(&parent,enlistment);+strbuf_parent_directory(&parent);+if(chdir(parent.buf)<0)+die_errno(_("could not switch to '%s'"),parent.buf);+strbuf_release(&parent);+#endif++if(remove_dir_recursively(enlistment,0))+die(_("failed to delete enlistment directory"));++return0;+}+staticintcmd_clone(intargc,constchar**argv){constchar*branch=NULL;
@@ -687,6 +716,39 @@ static int cmd_unregister(int argc, const char **argv)returnunregister_dir();}+staticintcmd_delete(intargc,constchar**argv)+{+char*cwd=xgetcwd();+structoptionoptions[]={+OPT_END(),+};+constchar*constusage[]={+N_("scalar delete <enlistment>"),+NULL+};+structstrbufenlistment=STRBUF_INIT;+intres=0;++argc=parse_options(argc,argv,NULL,options,+usage,0);++if(argc!=1)+usage_with_options(usage,options);++setup_enlistment_directory(argc,argv,usage,options,&enlistment);++if(dir_inside_of(cwd,enlistment.buf)>=0)+res=error(_("refusing to delete current working directory"));+else{+close_object_store(the_repository->objects);+res=delete_enlistment(&enlistment);+}+strbuf_release(&enlistment);+free(cwd);++returnres;+}+staticstruct{constchar*name;int(*fn)(int,constchar**);
@@ -127,6 +128,13 @@ reconfigure the enlistment. With the `--all` option, all enlistments currently registered with Scalar will be reconfigured. Use this option after each Scalar upgrade.+Delete+~~~~~~++delete <enlistment>::+ This subcommand lets you delete an existing Scalar enlistment from your+ local file system, unregistering the repository.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-07 11:00:01
From: Johannes Schindelin <redacted>
The `git` executable has these two very useful options:
-C <directory>:
switch to the specified directory before performing any actions
-c <key>=<value>:
temporarily configure this setting for the duration of the
specified scalar subcommand
With this commit, we teach the `scalar` executable the same trick.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 22 +++++++++++++++++++++-
contrib/scalar/scalar.txt | 10 ++++++++++
2 files changed, 31 insertions(+), 1 deletion(-)
@@ -807,6 +807,25 @@ int cmd_main(int argc, const char **argv)structstrbufscalar_usage=STRBUF_INIT;inti;+while(argc>1&&*argv[1]=='-'){+if(!strcmp(argv[1],"-C")){+if(argc<3)+die(_("-C requires a <directory>"));+if(chdir(argv[2])<0)+die_errno(_("could not change to '%s'"),+argv[2]);+argc-=2;+argv+=2;+}elseif(!strcmp(argv[1],"-c")){+if(argc<3)+die(_("-c requires a <key>=<value> argument"));+git_config_push_parameter(argv[2]);+argc-=2;+argv+=2;+}else+break;+}+if(argc>1){argv++;argc--;
@@ -36,6 +36,16 @@ The `scalar` command implements various subcommands, and different options depending on the subcommand. With the exception of `clone`, `list` and `reconfigure --all`, all subcommands expect to be run in an enlistment.+The following options can be specified _before_ the subcommand:++-C <directory>::+ Before running the subcommand, change the working directory. This+ option imitates the same option of linkgit:git[1].++-c <key>=<value>::+ For the duration of running the specified subcommand, configure this+ setting. This option imitates the same option of linkgit:git[1].+ COMMANDS --------
Except that this & contrib/scalar/Makefile is still broken in multiple
ways. We now have two Makefiles that can build contrib/scalar/scalar:
touch advice.h; make -j8 contrib/scalar/scalar
But try:
$ touch advice.h; (cd contrib/scalar 2>/dev/null && make scalar)
make: 'scalar' is up to date.
I.e. (I'm presuming in response to what I brought up in [1]) the
depenency graph in the top-level Makefile is correct in this specific
area. But it understands the ".depends" files (depending on
COMPUTE_HEADER_DEPENDENCIES), your sub-Makefile doesn't.
There's similar whack-a-mole issues in other areas, e.g.:
make -C contrib/scalar/ test
Will break or not depending on whether you've built the top-level
git.
I noticed at least one other subtle breakage (first thing I checked
after those two).
I'm happy to send you a working patch to integrate that fixes all these
issues, it also integrates with "make install", this series leaves us
with a "scalar" binary, but no way to install it, if we just piggy-back
on the existing installation procedure.
The side-thread on the v3[3] that you most recently replied to is
conflating some suggestion of shipping this as a built-in, with the
purely build-system implementation details I'm suggesting here.
I did mention using it as a built-in in [4], but for the semi-related
issue of scalar.c copy/pasting less code from git.c. But that was in the
context of such a thing being purely a non-visible implementation
detail. I.e. it would still be "scalar", not "git scalar".
*That* suggestion is just a side-musing about whether it would be easier
to teach git.c to inspects its argv and have a special-case for
dispatching to cmd_scalar(), a user would never know the difference. I
think that might also be worthwhile, but I care *way* less about that
than making maintaining the Makefile a hassle, and it's an entirely
orthogonal suggestion.
1. https://lore.kernel.org/git/875yu9iolf.fsf@evledraar.gmail.com/
2. https://lore.kernel.org/git/87mtofnzv1.fsf@evledraar.gmail.com/
3. https://lore.kernel.org/git/xmqq1r5qzv35.fsf@gitster.g
4. https://lore.kernel.org/git/87k0jhn0p9.fsf@evledraar.gmail.com/
On Wed, Oct 6, 2021 at 1:40 PM Johannes Schindelin
[off-list ref] wrote:
Hi Elijah,
On Mon, 27 Sep 2021, Elijah Newren wrote:
quoted
On Mon, Aug 30, 2021 at 2:36 PM Johannes Schindelin via GitGitGadget
[off-list ref] wrote:
quoted
...
quoted
COMMANDS
--------
+Clone
+~~~~~
+
+clone [<options>] <url> [<enlistment>]::
+ Clones the specified repository, similar to linkgit:git-clone[1]. By
+ default, only commit and tree objects are cloned. Once finished, the
+ worktree is located at `<enlistment>/src`.
++
+The sparse-checkout feature is enabled (except when run with `--full-clone`)
+and the only files present are those in the top-level directory. Use
+`git sparse-checkout set` to expand the set of directories you want to see,
+or `git sparse-checkout disable` to expand to all files (see
+linkgit:git-sparse-checkout[1] for more details). You can explore the
+subdirectories outside your sparse-checkout by using `git ls-tree HEAD`.
Should this be `git ls-tree [-r] HEAD`? Do you expect people to just
add directories that are found immediately under the toplevel, rather
than some that are a bit deeper?
I fear that `git ls-tree -r HEAD` in any monorepo might be a bit too
overwhelming for any reader.
Oh, right...
But I agree that just looking at HEAD is probably not enough. Maybe we
should use `git ls-tree HEAD[:<dir>]`?
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:27:24
tl;dr: This series contributes the core part of the Scalar command to the
Git project. This command provides an opinionated way to create and
configure Git repositories with a focus on very large repositories.
Changes since v5:
* Fixed the commit message talking about make -C contrib/scalar/Makefile.
* Fixed the git ls-tree invocation suggested in the manual for scalar
clone.
* Invoking make -C contrib/scalar, then changing a source file of libgit.a
and then immediately invoking make -C contrib/scalar again will now
implicitly rebuild libgit.a.
Changes since v4:
* scalar delete now refuses to delete anything if it was started from
within the enlistment.
* scalar delete releases any handles to the object store before deleting
the enlistment.
* The OBJECTS list in the Makefile will now include Scalar.
* scalar register now supports secondary worktrees, in addition to the
primary worktree.
Changes since v3:
* Moved the "Changes since" section to the top, to make it easier to see
what changed.
* Reworded the commit message of the first patch.
* Removed the [RFC] prefix because I did not hear any objections against
putting this into contrib/.
Changes since v2:
* Adjusted the description of the list command in the manual page , as
suggested by Bagas.
* Addressed two style nits in cmd_run().
* The documentation of git reconfigure -a was improved.
Changes since v1:
* A couple typos were fixed
* The code parsing the output of ls-remote was made more readable
* The indentation used in scalar.txt now consistently uses tabs
* We no longer hard-code core.bare = false when registering with Scalar
Background
==========
Years ago, Microsoft wanted to move the source code of the Windows operating
system to Git. The challenge there was to prove that Git could scale to
massive monorepos. The VFS for Git (formerly GVFS) project was born to take
up that challenge.
The final solution included a virtual filesystem (with both user-mode and
kernel components) and a customized fork of Git for Windows. This solution
contained several key concepts, such as only populating a portion of the
working directory, demand-fetching blobs, and performing periodic repo
maintenance in the background. However, the required kernel drivers made it
difficult to port the solution to other platforms.
But it was realized that many of these key concepts were independent of the
actual VFS and its projection of the working directory. The Scalar project
was created to make that separation, refine the key concepts, and then
extract those features into the new Scalar command.
The present
===========
The Scalar project provides a completely functional non-virtual experience
for monorepos. But why stop there. The Scalar project was designed to be a
self-destructing vehicle to allow those key concepts to be moved into core
Git itself for the benefit of all. For example, partial clone,
sparse-checkout, and background maintenance have already been upstreamed and
removed from Scalar proper. This patch series provides a C-based
implementation of the final remaining portions of the Scalar command. This
will make it easier for users to experiment with the Scalar command. It will
also make it substantially easier to experiment with moving functionality
from Scalar into core Git, while maintaining backwards-compatibility for
existing Scalar users.
The C-based Scalar has been shipped to Scalar users, and can be tested by
any interested reader: https://github.com/microsoft/git/releases/ (it offers
a Git for Windows installer, a macOS package and an Ubuntu package, Scalar
has been included since v2.33.0.vfs.0.0).
Next steps
==========
I have lined up a few more patch series on top of this one:
1. Implement a scalar diagnose command.
2. Use the built-in FSMonitor (that patch series obviously needs to wait
for FSMonitor to be integrated).
3. Modify the config machinery to be more generous about concurrent writes,
say, to the user-wide config.
4. A few patches to optionally build and install scalar as part of a
regular Git install (also teaching git help scalar to find the Scalar
documentation
These are included in my vfs-with-scalar branch thicket
[https://github.com/dscho/git/commits/vfs-with-scalar]. On top of that, this
branch thicket also includes patches I do not plan on upstreaming, mainly
because they are too specific either to VFS for Git, or they support Azure
Repos (which does not offer partial clones but speaks the GVFS protocol,
which can be used to emulate partial clones).
One other thing is very interesting about that vfs-with-scalar branch
thicket: it contains a GitHub workflow which will run Scalar's quite
extensive Functional Tests suite. This test suite is quite comprehensive and
caught us a lot of bugs in the past, not only in the Scalar code, but also
core Git.
Epilogue
========
Now, to address some questions that I imagine every reader has who made it
this far:
* Why not put the Scalar functionality directly into core Git, even a
built-in? Creating a Git builtin requires scrutiny over every aspect of
the feature, which is difficult to do while also maintaining the
command-line interface contract and expected behavior of the Scalar
command (there are existing users, after all). By having the Scalar
command in contrib/, we present a simple option for users to have these
features in the short term while the Git contributor community decides
which bits to absorb into Git built-ins.
* Why implement the Scalar command in the Git codebase? We ported Scalar to
the microsoft/git fork for several reasons. First, we realized it was
possible in the first place, now that the core features exist inside Git
itself. Second, compiling Scalar directly within a version of Git allows
us to remove a version compatibility check from each config option that
might or might not apply based on the installed Git version. Finally,
this new location has greatly simplified our release process and the
installation process for users. We now have ways to install Scalar with
microsoft/git via winget, brew, and apt-get. This has been the case since
we shipped v2.32.0 to our users, read: this setup has served us well
already.
* Why contribute Scalar to the Git project? We are biased, of course, yet
we do have evidence that the Scalar command is a helpful tool that offers
an simple way to handle huge repositories with ease. By contributing it
to the core Git project, we are able to share it with more users,
especially some users who do not want to install the microsoft/git fork.
We intend to include Scalar as a component in git-for-windows/git, but
are contributing it here first. Further, we think there is benefit to the
Git developer community as this presents an example of how to set certain
defaults that work for large repositories.
Derrick Stolee (4):
scalar: 'register' sets recommended config and starts maintenance
scalar: 'unregister' stops background maintenance
scalar: implement 'scalar list'
scalar: implement the `run` command
Johannes Schindelin (10):
scalar: create a rudimentary executable
scalar: start documenting the command
scalar: create test infrastructure
scalar: let 'unregister' handle a deleted enlistment directory
gracefully
scalar: implement the `clone` subcommand
scalar: teach 'clone' to support the --single-branch option
scalar: allow reconfiguring an existing enlistment
scalar: teach 'reconfigure' to optionally handle all registered
enlistments
scalar: implement the `version` command
scalar: accept -C and -c options before the subcommand
Matthew John Cheetham (1):
scalar: implement the `delete` command
Makefile | 9 +
contrib/scalar/.gitignore | 5 +
contrib/scalar/Makefile | 57 +++
contrib/scalar/scalar.c | 845 +++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 155 ++++++
contrib/scalar/t/Makefile | 78 +++
contrib/scalar/t/t9099-scalar.sh | 88 ++++
7 files changed, 1237 insertions(+)
create mode 100644 contrib/scalar/.gitignore
create mode 100644 contrib/scalar/Makefile
create mode 100644 contrib/scalar/scalar.c
create mode 100644 contrib/scalar/scalar.txt
create mode 100644 contrib/scalar/t/Makefile
create mode 100755 contrib/scalar/t/t9099-scalar.sh
base-commit: ebf3c04b262aa27fbb97f8a0156c2347fecafafb
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1005%2Fdscho%2Fscalar-the-beginning-v6
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1005/dscho/scalar-the-beginning-v6
Pull-Request: https://github.com/gitgitgadget/git/pull/1005
Range-diff vs v5:
1: 7119a8efc21 ! 1: 9b0b00438ec scalar: create a rudimentary executable
@@ Commit message
The idea here is that you can (optionally) build Scalar via
- make -C contrib/scalar/Makefile
+ make -C contrib/scalar/
This will build the `scalar` executable and put it into the
contrib/scalar/ subdirectory.
@@ contrib/scalar/Makefile (new)
+TARGETS = scalar$(X) scalar.o
+GITLIBS = ../../common-main.o ../../libgit.a ../../xdiff/lib.a
+
-+all: scalar$X
++all: scalar$(X)
+
+$(GITLIBS):
+ $(QUIET_SUBDIR0)../.. $(QUIET_SUBDIR1) $(subst ../../,,$@)
@@ contrib/scalar/Makefile (new)
+clean:
+ $(RM) $(TARGETS)
+
-+.PHONY: all clean FORCE
++.PHONY: $(GITLIBS) all clean FORCE
## contrib/scalar/scalar.c (new) ##
@@
2: edc1e5f73bd ! 2: 40fee75968e scalar: start documenting the command
@@ contrib/scalar/Makefile: $(TARGETS): $(GITLIBS) scalar.c
$(RM) $(TARGETS)
+ $(RM) scalar.1 scalar.html scalar.xml
--.PHONY: all clean FORCE
+-.PHONY: $(GITLIBS) all clean FORCE
+docs: scalar.html scalar.1
+
+scalar.html: | scalar.1 # prevent them from trying to build `doc.dep` in parallel
@@ contrib/scalar/Makefile: $(TARGETS): $(GITLIBS) scalar.c
+ ../contrib/scalar/$@
+ $(QUIET)test scalar.1 != "$@" || mv ../../Documentation/$@ .
+
-+.PHONY: all clean docs FORCE
++.PHONY: $(GITLIBS) all clean docs FORCE
## contrib/scalar/scalar.txt (new) ##
@@
3: 9eeb66d5b5d ! 3: e3507c2d5f7 scalar: create test infrastructure
@@ contrib/scalar/Makefile: include ../../config.mak.uname
TARGETS = scalar$(X) scalar.o
GITLIBS = ../../common-main.o ../../libgit.a ../../xdiff/lib.a
--all: scalar$X
-+all: scalar$X ../../bin-wrappers/scalar
+-all: scalar$(X)
++all: scalar$(X) ../../bin-wrappers/scalar
$(GITLIBS):
$(QUIET_SUBDIR0)../.. $(QUIET_SUBDIR1) $(subst ../../,,$@)
@@ contrib/scalar/Makefile: scalar.html scalar.1: scalar.txt
../contrib/scalar/$@
$(QUIET)test scalar.1 != "$@" || mv ../../Documentation/$@ .
--.PHONY: all clean docs FORCE
-+.PHONY: all clean docs test FORCE
+-.PHONY: $(GITLIBS) all clean docs FORCE
++.PHONY: $(GITLIBS) all clean docs test FORCE
## contrib/scalar/t/Makefile (new) ##
@@
4: 8ebfa51ae15 = 4: 53224e506ea scalar: 'register' sets recommended config and starts maintenance
5: 51b5fc577c9 = 5: 3591e53700b scalar: 'unregister' stops background maintenance
6: 0041477374e = 6: fe04ae7ec66 scalar: let 'unregister' handle a deleted enlistment directory gracefully
7: 12efa86e4cb = 7: 136aec439fd scalar: implement 'scalar list'
8: 670891d14cc ! 8: ed24a5e9b4c scalar: implement the `clone` subcommand
@@ contrib/scalar/scalar.txt: an existing Git worktree with Scalar whose name is no
+`git sparse-checkout set` to expand the set of directories you want to see,
+or `git sparse-checkout disable` to expand to all files (see
+linkgit:git-sparse-checkout[1] for more details). You can explore the
-+subdirectories outside your sparse-checkout by using `git ls-tree HEAD`.
++subdirectories outside your sparse-checkout by using `git ls-tree
++HEAD[:<directory>]`.
+
+-b <name>::
+--branch <name>::
9: 03b8385ebb5 ! 9: 5ee54a9e25f scalar: teach 'clone' to support the --single-branch option
@@ contrib/scalar/scalar.txt: scalar - an opinionated repository management tool
scalar list
scalar register [<enlistment>]
scalar unregister [<enlistment>]
-@@ contrib/scalar/scalar.txt: subdirectories outside your sparse-checkout by using `git ls-tree HEAD`.
+@@ contrib/scalar/scalar.txt: HEAD[:<directory>]`.
Instead of checking out the branch pointed to by the cloned
repository's HEAD, check out the `<name>` branch instead.
10: 5a0b3843f98 = 10: 3361eb8f091 scalar: implement the `run` command
11: 6d9aaeb05fa = 11: c4778c1dc5f scalar: allow reconfiguring an existing enlistment
12: 2967d7f1425 = 12: cd824e9e483 scalar: teach 'reconfigure' to optionally handle all registered enlistments
13: 8069cc536fe = 13: 843026d5481 scalar: implement the `delete` command
14: 2ecfaa5d0fe = 14: 5ca169b3f3a scalar: implement the `version` command
15: f81e8b3bcf1 = 15: e3a6eea0534 scalar: accept -C and -c options before the subcommand
--
gitgitgadget
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:27:25
From: Johannes Schindelin <redacted>
The idea of Scalar (https://github.com/microsoft/scalar), and before
that, of VFS for Git, has always been to prove that Git _can_ scale, and
to upstream whatever strategies have been demonstrated to help.
With this patch, we start the journey from that C# project to move what
is left to Git's own `contrib/` directory, reimplementing it in pure C,
with the intention to facilitate integrating the functionality into core
Git all while maintaining backwards-compatibility for existing Scalar
users (which will be much easier when both live in the same worktree).
It has always been the plan to contribute all of the proven strategies
back to core Git.
For example, while the virtual filesystem provided by VFS for Git helped
the team developing the Windows operating system to move onto Git, while
trying to upstream it we realized that it cannot be done: getting the
virtual filesystem to work (which we only managed to implement fully on
Windows, but not on, say, macOS or Linux), and the required server-side
support for the GVFS protocol, made this not quite feasible.
The Scalar project learned from that and tackled the problem with
different tactics: instead of pretending to Git that the working
directory is fully populated, it _specifically_ teaches Git about
partial clone (which is based on VFS for Git's cache server), about
sparse checkout (which VFS for Git tried to do transparently, in the
file system layer), and regularly runs maintenance tasks to keep the
repository in a healthy state.
With partial clone, sparse checkout and `git maintenance` having been
upstreamed, there is little left that `scalar.exe` does which `git.exe`
cannot do. One such thing is that `scalar clone <url>` will
automatically set up a partial, sparse clone, and configure
known-helpful settings from the start.
So let's bring this convenience into Git's tree.
The idea here is that you can (optionally) build Scalar via
make -C contrib/scalar/
This will build the `scalar` executable and put it into the
contrib/scalar/ subdirectory.
The slightly awkward addition of the `contrib/scalar/*` bits to the
top-level `Makefile` are actually really required: we want to link to
`libgit.a`, which means that we will need to use the very same `CFLAGS`
and `LDFLAGS` as the rest of Git.
An early development version of this patch tried to replicate all the
conditional code in `contrib/scalar/Makefile` (e.g. `NO_POLL`) just like
`contrib/svn-fe/Makefile` used to do before it was retired. It turned
out to be quite the whack-a-mole game: the SHA-1-related flags, the
flags enabling/disabling `compat/poll/`, `compat/regex/`,
`compat/win32mmap.c` & friends depending on the current platform... To
put it mildly: it was a major mess.
Instead, this patch makes minimal changes to the top-level `Makefile` so
that the bits in `contrib/scalar/` can be compiled and linked, and
adds a `contrib/scalar/Makefile` that uses the top-level `Makefile` in a
most minimal way to do the actual compiling.
Note: With this commit, we only establish the infrastructure, no
Scalar functionality is implemented yet; We will do that incrementally
over the next few commits.
Signed-off-by: Johannes Schindelin <redacted>
---
Makefile | 9 +++++++++
contrib/scalar/.gitignore | 2 ++
contrib/scalar/Makefile | 34 ++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.c | 36 ++++++++++++++++++++++++++++++++++++
4 files changed, 81 insertions(+)
create mode 100644 contrib/scalar/.gitignore
create mode 100644 contrib/scalar/Makefile
create mode 100644 contrib/scalar/scalar.c
@@ -0,0 +1,34 @@+QUIET_SUBDIR0=+$(MAKE)-C# space to separate -C and subdir+QUIET_SUBDIR1=++ifneq ($(findstring s,$(MAKEFLAGS)),s)+ifndef V+QUIET_SUBDIR0=+@subdir=+QUIET_SUBDIR1=;$(NO_SUBDIR)echo' 'SUBDIR$$subdir;\+$(MAKE)$(PRINT_DIR)-C$$subdir+else+exportV+endif+endif++all:++include ../../config.mak.uname+-include ../../config.mak.autogen+-include ../../config.mak++TARGETS=scalar$(X)scalar.o+GITLIBS=../../common-main.o../../libgit.a../../xdiff/lib.a++all:scalar$(X)++$(GITLIBS):+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(subst../../,,$@)++$(TARGETS):$(GITLIBS)scalar.c+$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(patsubst%,contrib/scalar/%,$@)++clean:+$(RM)$(TARGETS)++.PHONY:$(GITLIBS)allcleanFORCE
@@ -30,5 +31,16 @@ $(TARGETS): $(GITLIBS) scalar.cclean:$(RM)$(TARGETS)+$(RM)scalar.1scalar.htmlscalar.xml-.PHONY:$(GITLIBS)allcleanFORCE+docs:scalar.htmlscalar.1++scalar.html:|scalar.1 # prevent them from trying to build `doc.dep` in parallel++scalar.html scalar.1:scalar.txt+$(QUIET_SUBDIR0)../../Documentation$(QUIET_SUBDIR1)\+MAN_TXT=../contrib/scalar/scalar.txt\+../contrib/scalar/$@+$(QUIET)testscalar.1!="$@"||mv../../Documentation/$@.++.PHONY:$(GITLIBS)allcleandocsFORCE
@@ -0,0 +1,38 @@+scalar(1)+=========++NAME+----+scalar - an opinionated repository management tool++SYNOPSIS+--------+[verse]+scalar <command> [<options>]++DESCRIPTION+-----------++Scalar is an opinionated repository management tool. By creating new+repositories or registering existing repositories with Scalar, your Git+experience will speed up. Scalar sets advanced Git config settings,+maintains your repositories in the background, and helps reduce data sent+across the network.++An important Scalar concept is the enlistment: this is the top-level directory+of the project. It usually contains the subdirectory `src/` which is a Git+worktree. This encourages the separation between tracked files (inside `src/`)+and untracked files, such as build artifacts (outside `src/`). When registering+an existing Git worktree with Scalar whose name is not `src`, the enlistment+will be identical to the worktree.++The `scalar` command implements various subcommands, and different options+depending on the subcommand.++SEE ALSO+--------+linkgit:git-maintenance[1].++Scalar+---+Associated with the linkgit:git[1] suite
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:27:37
From: Johannes Schindelin <redacted>
To test the Scalar command, create a test script in contrib/scalar/t
that is executed as `make -C contrib/scalar test`. Since Scalar has no
meaningful capabilities yet, the only test is rather simple. We will add
more tests in subsequent commits that introduce corresponding, new
functionality.
Note: this test script is intended to test `scalar` only lightly, even
after all of the functionality is implemented.
A more comprehensive functional (or: integration) test suite can be
found at https://github.com/microsoft/scalar; It is used in the workflow
https://github.com/microsoft/git/blob/HEAD/.github/workflows/scalar-functional-tests.yml
in Microsoft's Git fork. This test suite performs end-to-end tests with
a real remote repository, and is run as part of the regular CI builds.
Since those tests require some functionality supported only by
Microsoft's Git fork ("GVFS protocol"), there is no intention to port
that fuller test suite to `contrib/scalar/`.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/Makefile | 17 +++++--
contrib/scalar/t/Makefile | 78 ++++++++++++++++++++++++++++++++
contrib/scalar/t/t9099-scalar.sh | 17 +++++++
3 files changed, 109 insertions(+), 3 deletions(-)
create mode 100644 contrib/scalar/t/Makefile
create mode 100755 contrib/scalar/t/t9099-scalar.sh
@@ -21,7 +22,7 @@ include ../../config.mak.unameTARGETS=scalar$(X)scalar.oGITLIBS=../../common-main.o../../libgit.a../../xdiff/lib.a-all:scalar$(X)+all:scalar$(X) ../../bin-wrappers/scalar$(GITLIBS):$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(subst../../,,$@)
@@ -30,9 +31,19 @@ $(TARGETS): $(GITLIBS) scalar.c$(QUIET_SUBDIR0)../..$(QUIET_SUBDIR1)$(patsubst%,contrib/scalar/%,$@)clean:-$(RM)$(TARGETS)+$(RM)$(TARGETS)../../bin-wrappers/scalar$(RM)scalar.1scalar.htmlscalar.xml+../../bin-wrappers/scalar:../../wrap-for-bin.shMakefile+@mkdir-p../../bin-wrappers+$(QUIET_GEN)sed-e'1s|#!.*/sh|#!$(SHELL_PATH_SQ)|'\+-e's|@@BUILD_DIR@@|$(shell cd ../.. && pwd)|'\+-e's|@@PROG@@|contrib/scalar/scalar$(X)|'<$<>$@&&\+chmod+x$@++test:all+$(MAKE)-Ct+docs:scalar.htmlscalar.1scalar.html:|scalar.1 # prevent them from trying to build `doc.dep` in parallel
@@ -0,0 +1,17 @@+#!/bin/sh++test_description='test the `scalar` command'++TEST_DIRECTORY=$PWD/../../../t+exportTEST_DIRECTORY++# Make it work with --no-bin-wrappers+PATH=$PWD/..:$PATH++.../../../t/test-lib.sh++test_expect_success'scalar shows a usage''+test_expect_code129scalar-h+'++test_done
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-10-27 08:27:37
From: Derrick Stolee <redacted>
Let's start implementing the `register` command. With this commit,
recommended settings are configured upon `scalar register`, and Git's
background maintenance is started.
The recommended config settings may very well change in the future. For
example, once the built-in FSMonitor is available, we will want to
enable it upon `scalar register`. For that reason, we explicitly support
running `scalar register` in an already-registered enlistment.
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 248 ++++++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 18 ++-
2 files changed, 265 insertions(+), 1 deletion(-)
@@ -5,11 +5,259 @@#include"cache.h"#include"gettext.h"#include"parse-options.h"+#include"config.h"+#include"run-command.h"++/*+*Removethedeepestsubdirectoryintheprovidedpathstring.Pathmustnot+*includeatrailingpathseparator.Returns1ifparentdirectoryfound,+*otherwise0.+*/+staticintstrbuf_parent_directory(structstrbuf*buf)+{+size_tlen=buf->len;+size_toffset=offset_1st_component(buf->buf);+char*path_sep=find_last_dir_sep(buf->buf+offset);+strbuf_setlen(buf,path_sep?path_sep-buf->buf:offset);++returnbuf->len<len;+}++staticvoidsetup_enlistment_directory(intargc,constchar**argv,+constchar*const*usagestr,+conststructoption*options,+structstrbuf*enlistment_root)+{+structstrbufpath=STRBUF_INIT;+char*root;+intenlistment_found=0;++if(startup_info->have_repository)+BUG("gitdir already set up?!?");++if(argc>1)+usage_with_options(usagestr,options);++/* find the worktree, determine its corresponding root */+if(argc==1)+strbuf_add_absolute_path(&path,argv[0]);+elseif(strbuf_getcwd(&path)<0)+die(_("need a working directory"));++strbuf_trim_trailing_dir_sep(&path);+do{+constsize_tlen=path.len;++/* check if currently in enlistment root with src/ workdir */+strbuf_addstr(&path,"/src");+if(is_nonbare_repository_dir(&path)){+if(enlistment_root)+strbuf_add(enlistment_root,path.buf,len);++enlistment_found=1;+break;+}++/* reset to original path */+strbuf_setlen(&path,len);++/* check if currently in workdir */+if(is_nonbare_repository_dir(&path)){+if(enlistment_root){+/*+*Iftheworktree'sdirectory'snameis`src`,theenlistmentisthe+*parentdirectory,otherwiseitisidenticaltotheworktree.+*/+root=strip_path_suffix(path.buf,"src");+strbuf_addstr(enlistment_root,root?root:path.buf);+free(root);+}++enlistment_found=1;+break;+}+}while(strbuf_parent_directory(&path));++if(!enlistment_found)+die(_("could not find enlistment root"));++if(chdir(path.buf)<0)+die_errno(_("could not switch to '%s'"),path.buf);++strbuf_release(&path);+setup_git_directory();+}++staticintrun_git(constchar*arg,...)+{+structstrvecargv=STRVEC_INIT;+va_listargs;+constchar*p;+intres;++va_start(args,arg);+strvec_push(&argv,arg);+while((p=va_arg(args,constchar*)))+strvec_push(&argv,p);+va_end(args);++res=run_command_v_opt(argv.v,RUN_GIT_CMD);++strvec_clear(&argv);+returnres;+}++staticintset_recommended_config(void)+{+struct{+constchar*key;+constchar*value;+}config[]={+{"am.keepCR","true"},+{"core.FSCache","true"},+{"core.multiPackIndex","true"},+{"core.preloadIndex","true"},+#ifndef WIN32+{"core.untrackedCache","true"},+#else+/*+*Unfortunately,Scalar'sFunctionalTestsdemonstrated+*thattheuntrackedcachefeatureisunreliableonWindows+*(whichisabummerbecausethatplatformwouldbenefitthe+*mostfromit).Forsomereason,freshlycreatedfilesseem+*nottoupdatethedirectory's`lastModified`time+*immediately,buttheuntrackedcachewouldneedtorelyon+*that.+*+*Therefore,withasadheart,wedisablethisveryuseful+*featureonWindows.+*/+{"core.untrackedCache","false"},+#endif+{"core.logAllRefUpdates","true"},+{"credential.https://dev.azure.com.useHttpPath","true"},+{"credential.validate","false"},/* GCM4W-only */+{"gc.auto","0"},+{"gui.GCWarning","false"},+{"index.threads","true"},+{"index.version","4"},+{"merge.stat","false"},+{"merge.renames","false"},+{"pack.useBitmaps","false"},+{"pack.useSparse","true"},+{"receive.autoGC","false"},+{"reset.quiet","true"},+{"feature.manyFiles","false"},+{"feature.experimental","false"},+{"fetch.unpackLimit","1"},+{"fetch.writeCommitGraph","false"},+#ifdef WIN32+{"http.sslBackend","schannel"},+#endif+{"status.aheadBehind","false"},+{"commitGraph.generationVersion","1"},+{"core.autoCRLF","false"},+{"core.safeCRLF","false"},+{NULL,NULL},+};+inti;+char*value;++for(i=0;config[i].key;i++){+if(git_config_get_string(config[i].key,&value)){+trace2_data_string("scalar",the_repository,config[i].key,"created");+if(git_config_set_gently(config[i].key,+config[i].value)<0)+returnerror(_("could not configure %s=%s"),+config[i].key,config[i].value);+}else{+trace2_data_string("scalar",the_repository,config[i].key,"exists");+free(value);+}+}++/*+*The`log.excludeDecoration`settingisspecialbecauseitallows+*formultiplevalues.+*/+if(git_config_get_string("log.excludeDecoration",&value)){+trace2_data_string("scalar",the_repository,+"log.excludeDecoration","created");+if(git_config_set_multivar_gently("log.excludeDecoration",+"refs/prefetch/*",+CONFIG_REGEX_NONE,0))+returnerror(_("could not configure "+"log.excludeDecoration"));+}else{+trace2_data_string("scalar",the_repository,+"log.excludeDecoration","exists");+free(value);+}++return0;+}++staticintstart_maintenance(void)+{+returnrun_git("maintenance","start",NULL);+}++staticintadd_enlistment(void)+{+intres;++if(!the_repository->worktree)+die(_("Scalar enlistments require a worktree"));++res=run_git("config","--global","--get","--fixed-value",+"scalar.repo",the_repository->worktree,NULL);++/*+*Ifthesettingisalreadythere,thendonothing.+*/+if(!res)+return0;++returnrun_git("config","--global","--add",+"scalar.repo",the_repository->worktree,NULL);+}++staticintregister_dir(void)+{+intres=add_enlistment();++if(!res)+res=set_recommended_config();++if(!res)+res=start_maintenance();++returnres;+}++staticintcmd_register(intargc,constchar**argv)+{+structoptionoptions[]={+OPT_END(),+};+constchar*constusage[]={+N_("scalar register [<enlistment>]"),+NULL+};++argc=parse_options(argc,argv,NULL,options,+usage,0);++setup_enlistment_directory(argc,argv,usage,options,NULL);++returnregister_dir();+}staticstruct{constchar*name;int(*fn)(int,constchar**);}builtins[]={+{"register",cmd_register},{NULL,NULL},};
@@ -29,6 +29,22 @@ will be identical to the worktree. The `scalar` command implements various subcommands, and different options depending on the subcommand.+COMMANDS+--------++Register+~~~~~~~~++register [<enlistment>]::+ Adds the enlistment's repository to the list of registered repositories+ and starts background maintenance. If `<enlistment>` is not provided,+ then the enlistment associated with the current working directory is+ registered.+++Note: when this subcommand is called in a worktree that is called `src/`, its+parent directory is considered to be the Scalar enlistment. If the worktree is+_not_ called `src/`, it itself will be considered to be the Scalar enlistment.+ SEE ALSO -------- linkgit:git-maintenance[1].
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-10-27 08:27:39
From: Derrick Stolee <redacted>
Just like `scalar register` starts the scheduled background maintenance,
`scalar unregister` stops it. Note that we use `git maintenance start`
in `scalar register`, but we do not use `git maintenance stop` in
`scalar unregister`: this would stop maintenance for _all_ repositories,
not just for the one we want to unregister.
The `unregister` command also removes the corresponding entry from the
`[scalar]` section in the global Git config.
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 50 ++++++++++++++++++++++++++++++++-------
contrib/scalar/scalar.txt | 8 +++++++
2 files changed, 50 insertions(+), 8 deletions(-)
@@ -45,6 +46,13 @@ Note: when this subcommand is called in a worktree that is called `src/`, its parent directory is considered to be the Scalar enlistment. If the worktree is _not_ called `src/`, it itself will be considered to be the Scalar enlistment.+Unregister+~~~~~~~~~~++unregister [<enlistment>]::+ Remove the specified repository from the list of repositories+ registered with Scalar and stop the scheduled background maintenance.+ SEE ALSO -------- linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:27:39
From: Johannes Schindelin <redacted>
When a user deleted an enlistment manually, let's be generous and
_still_ unregister it.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 46 ++++++++++++++++++++++++++++++++
contrib/scalar/t/t9099-scalar.sh | 15 +++++++++++
2 files changed, 61 insertions(+)
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-10-27 08:27:40
From: Derrick Stolee <redacted>
The produced list simply consists of those repositories registered under
the multi-valued `scalar.repo` config setting in the user's Git config.
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 11 +++++++++++
contrib/scalar/scalar.txt | 11 ++++++++++-
2 files changed, 21 insertions(+), 1 deletion(-)
@@ -250,6 +250,16 @@ static int unregister_dir(void)returnres;}+staticintcmd_list(intargc,constchar**argv)+{+if(argc!=1)+die(_("`scalar list` does not take arguments"));++if(run_git("config","--global","--get-all","scalar.repo",NULL)<0)+return-1;+return0;+}+staticintcmd_register(intargc,constchar**argv){structoptionoptions[]={
@@ -28,11 +29,19 @@ an existing Git worktree with Scalar whose name is not `src`, the enlistment will be identical to the worktree. The `scalar` command implements various subcommands, and different options-depending on the subcommand.+depending on the subcommand. With the exception of `list`, all subcommands+expect to be run in an enlistment. COMMANDS --------+List+~~~~++list::+ List enlistments that are currently registered by Scalar. This+ subcommand does not need to be run inside an enlistment.+ Register ~~~~~~~~
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:27:45
From: Johannes Schindelin <redacted>
This implements Scalar's opinionated `clone` command: it tries to use a
partial clone and sets up a sparse checkout by default. In contrast to
`git clone`, `scalar clone` sets up the worktree in the `src/`
subdirectory, to encourage a separation between the source files and the
build output (which helps Git tremendously because it avoids untracked
files that have to be specifically ignored when refreshing the index).
Also, it registers the repository for regular, scheduled maintenance,
and configures a flurry of configuration settings based on the
experience and experiments of the Microsoft Windows and the Microsoft
Office development teams.
Note: since the `scalar clone` command is by far the most commonly
called `scalar` subcommand, we document it at the top of the manual
page.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 201 +++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 32 ++++-
contrib/scalar/t/t9099-scalar.sh | 32 +++++
3 files changed, 262 insertions(+), 3 deletions(-)
@@ -250,6 +251,205 @@ static int unregister_dir(void)returnres;}+/* printf-style interface, expects `<key>=<value>` argument */+staticintset_config(constchar*fmt,...)+{+structstrbufbuf=STRBUF_INIT;+char*value;+intres;+va_listargs;++va_start(args,fmt);+strbuf_vaddf(&buf,fmt,args);+va_end(args);++value=strchr(buf.buf,'=');+if(value)+*(value++)='\0';+res=git_config_set_gently(buf.buf,value);+strbuf_release(&buf);++returnres;+}++staticchar*remote_default_branch(constchar*url)+{+structchild_processcp=CHILD_PROCESS_INIT;+structstrbufout=STRBUF_INIT;++cp.git_cmd=1;+strvec_pushl(&cp.args,"ls-remote","--symref",url,"HEAD",NULL);+if(!pipe_command(&cp,NULL,0,&out,0,NULL,0)){+constchar*line=out.buf;++while(*line){+constchar*eol=strchrnul(line,'\n'),*p;+size_tlen=eol-line;+char*branch;++if(!skip_prefix(line,"ref: ",&p)||+!strip_suffix_mem(line,&len,"\tHEAD")){+line=eol+(*eol=='\n');+continue;+}++eol=line+len;+if(skip_prefix(p,"refs/heads/",&p)){+branch=xstrndup(p,eol-p);+strbuf_release(&out);+returnbranch;+}++error(_("remote HEAD is not a branch: '%.*s'"),+(int)(eol-p),p);+strbuf_release(&out);+returnNULL;+}+}+warning(_("failed to get default branch name from remote; "+"using local default"));+strbuf_reset(&out);++child_process_init(&cp);+cp.git_cmd=1;+strvec_pushl(&cp.args,"symbolic-ref","--short","HEAD",NULL);+if(!pipe_command(&cp,NULL,0,&out,0,NULL,0)){+strbuf_trim(&out);+returnstrbuf_detach(&out,NULL);+}++strbuf_release(&out);+error(_("failed to get default branch name"));+returnNULL;+}++staticintcmd_clone(intargc,constchar**argv)+{+constchar*branch=NULL;+intfull_clone=0;+structoptionclone_options[]={+OPT_STRING('b',"branch",&branch,N_("<branch>"),+N_("branch to checkout after clone")),+OPT_BOOL(0,"full-clone",&full_clone,+N_("when cloning, create full working directory")),+OPT_END(),+};+constchar*constclone_usage[]={+N_("scalar clone [<options>] [--] <repo> [<dir>]"),+NULL+};+constchar*url;+char*enlistment=NULL,*dir=NULL;+structstrbufbuf=STRBUF_INIT;+intres;++argc=parse_options(argc,argv,NULL,clone_options,clone_usage,0);++if(argc==2){+url=argv[0];+enlistment=xstrdup(argv[1]);+}elseif(argc==1){+url=argv[0];++strbuf_addstr(&buf,url);+/* Strip trailing slashes, if any */+while(buf.len>0&&is_dir_sep(buf.buf[buf.len-1]))+strbuf_setlen(&buf,buf.len-1);+/* Strip suffix `.git`, if any */+strbuf_strip_suffix(&buf,".git");++enlistment=find_last_dir_sep(buf.buf);+if(!enlistment){+die(_("cannot deduce worktree name from '%s'"),url);+}+enlistment=xstrdup(enlistment+1);+}else{+usage_msg_opt(_("You must specify a repository to clone."),+clone_usage,clone_options);+}++if(is_directory(enlistment))+die(_("directory '%s' exists already"),enlistment);++dir=xstrfmt("%s/src",enlistment);++strbuf_reset(&buf);+if(branch)+strbuf_addf(&buf,"init.defaultBranch=%s",branch);+else{+char*b=repo_default_branch_name(the_repository,1);+strbuf_addf(&buf,"init.defaultBranch=%s",b);+free(b);+}++if((res=run_git("-c",buf.buf,"init","--",dir,NULL)))+gotocleanup;++if(chdir(dir)<0){+res=error_errno(_("could not switch to '%s'"),dir);+gotocleanup;+}++setup_git_directory();++/* common-main already logs `argv` */+trace2_def_repo(the_repository);++if(!branch&&!(branch=remote_default_branch(url))){+res=error(_("failed to get default branch for '%s'"),url);+gotocleanup;+}++if(set_config("remote.origin.url=%s",url)||+set_config("remote.origin.fetch="+"+refs/heads/*:refs/remotes/origin/*")||+set_config("remote.origin.promisor=true")||+set_config("remote.origin.partialCloneFilter=blob:none")){+res=error(_("could not configure remote in '%s'"),dir);+gotocleanup;+}++if(!full_clone&&+(res=run_git("sparse-checkout","init","--cone",NULL)))+gotocleanup;++if(set_recommended_config())+returnerror(_("could not configure '%s'"),dir);++if((res=run_git("fetch","--quiet","origin",NULL))){+warning(_("partial clone failed; attempting full clone"));++if(set_config("remote.origin.promisor")||+set_config("remote.origin.partialCloneFilter")){+res=error(_("could not configure for full clone"));+gotocleanup;+}++if((res=run_git("fetch","--quiet","origin",NULL)))+gotocleanup;+}++if((res=set_config("branch.%s.remote=origin",branch)))+gotocleanup;+if((res=set_config("branch.%s.merge=refs/heads/%s",+branch,branch)))+gotocleanup;++strbuf_reset(&buf);+strbuf_addf(&buf,"origin/%s",branch);+res=run_git("checkout","-f","-t",buf.buf,NULL);+if(res)+gotocleanup;++res=register_dir();++cleanup:+free(enlistment);+free(dir);+strbuf_release(&buf);+returnres;+}+staticintcmd_list(intargc,constchar**argv){if(argc!=1)
@@ -29,12 +30,37 @@ an existing Git worktree with Scalar whose name is not `src`, the enlistment will be identical to the worktree. The `scalar` command implements various subcommands, and different options-depending on the subcommand. With the exception of `list`, all subcommands-expect to be run in an enlistment.+depending on the subcommand. With the exception of `clone` and `list`, all+subcommands expect to be run in an enlistment. COMMANDS --------+Clone+~~~~~++clone [<options>] <url> [<enlistment>]::+ Clones the specified repository, similar to linkgit:git-clone[1]. By+ default, only commit and tree objects are cloned. Once finished, the+ worktree is located at `<enlistment>/src`.+++The sparse-checkout feature is enabled (except when run with `--full-clone`)+and the only files present are those in the top-level directory. Use+`git sparse-checkout set` to expand the set of directories you want to see,+or `git sparse-checkout disable` to expand to all files (see+linkgit:git-sparse-checkout[1] for more details). You can explore the+subdirectories outside your sparse-checkout by using `git ls-tree+HEAD[:<directory>]`.++-b <name>::+--branch <name>::+ Instead of checking out the branch pointed to by the cloned+ repository's HEAD, check out the `<name>` branch instead.++--[no-]full-clone::+ A sparse-checkout is initialized by default. This behavior can be+ turned off via `--full-clone`.+ List ~~~~
@@ -64,7 +90,7 @@ unregister [<enlistment>]:: SEE ALSO ---------linkgit:git-maintenance[1].+linkgit:git-clone[1], linkgit:git-maintenance[1]. Scalar ---
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:27:46
From: Johannes Schindelin <redacted>
Just like `git clone`, the `scalar clone` command now also offers to
restrict the clone to a single branch.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 9 +++++++--
contrib/scalar/scalar.txt | 12 +++++++++++-
contrib/scalar/t/t9099-scalar.sh | 6 +++++-
3 files changed, 23 insertions(+), 4 deletions(-)
@@ -326,12 +326,15 @@ static char *remote_default_branch(const char *url)staticintcmd_clone(intargc,constchar**argv){constchar*branch=NULL;-intfull_clone=0;+intfull_clone=0,single_branch=0;structoptionclone_options[]={OPT_STRING('b',"branch",&branch,N_("<branch>"),N_("branch to checkout after clone")),OPT_BOOL(0,"full-clone",&full_clone,N_("when cloning, create full working directory")),+OPT_BOOL(0,"single-branch",&single_branch,+N_("only download metadata for the branch that will "+"be checked out")),OPT_END(),};constchar*constclone_usage[]={
@@ -402,7 +405,9 @@ static int cmd_clone(int argc, const char **argv)if(set_config("remote.origin.url=%s",url)||set_config("remote.origin.fetch="-"+refs/heads/*:refs/remotes/origin/*")||+"+refs/heads/%s:refs/remotes/origin/%s",+single_branch?branch:"*",+single_branch?branch:"*")||set_config("remote.origin.promisor=true")||set_config("remote.origin.partialCloneFilter=blob:none")){res=error(_("could not configure remote in '%s'"),dir);
@@ -57,6 +57,16 @@ HEAD[:<directory>]`. Instead of checking out the branch pointed to by the cloned repository's HEAD, check out the `<name>` branch instead.+--[no-]single-branch::+ Clone only the history leading to the tip of a single branch, either+ specified by the `--branch` option or the primary branch remote's+ `HEAD` points at.+++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+`--single-branch` clone was made, no remote-tracking branch is created.+ --[no-]full-clone:: A sparse-checkout is initialized by default. This behavior can be turned off via `--full-clone`.
From: Derrick Stolee via GitGitGadget <hidden> Date: 2021-10-27 08:27:50
From: Derrick Stolee <redacted>
Note: this subcommand is provided primarily for backwards-compatibility,
for existing Scalar uses. It is mostly just a shim for `git
maintenance`, mapping task names from the way Scalar called them to the
way Git calls them.
The reason why those names differ? The background maintenance was first
implemented in Scalar, and when it was contributed as a patch series
implementing the `git maintenance` command, reviewers suggested better
names, those suggestions were accepted before the patches were
integrated into core Git.
Signed-off-by: Derrick Stolee <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 64 +++++++++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 19 ++++++++++++
2 files changed, 83 insertions(+)
@@ -483,6 +483,69 @@ static int cmd_register(int argc, const char **argv)returnregister_dir();}+staticintcmd_run(intargc,constchar**argv)+{+structoptionoptions[]={+OPT_END(),+};+struct{+constchar*arg,*task;+}tasks[]={+{"config",NULL},+{"commit-graph","commit-graph"},+{"fetch","prefetch"},+{"loose-objects","loose-objects"},+{"pack-files","incremental-repack"},+{NULL,NULL}+};+structstrbufbuf=STRBUF_INIT;+constchar*usagestr[]={NULL,NULL};+inti;++strbuf_addstr(&buf,N_("scalar run <task> [<enlistment>]\nTasks:\n"));+for(i=0;tasks[i].arg;i++)+strbuf_addf(&buf,"\t%s\n",tasks[i].arg);+usagestr[0]=buf.buf;++argc=parse_options(argc,argv,NULL,options,+usagestr,0);++if(!argc)+usage_with_options(usagestr,options);++if(!strcmp("all",argv[0])){+i=-1;+}else{+for(i=0;tasks[i].arg&&strcmp(tasks[i].arg,argv[0]);i++)+;/* keep looking for the task */++if(i>0&&!tasks[i].arg){+error(_("no such task: '%s'"),argv[0]);+usage_with_options(usagestr,options);+}+}++argc--;+argv++;+setup_enlistment_directory(argc,argv,usagestr,options,NULL);+strbuf_release(&buf);++if(i==0)+returnregister_dir();++if(i>0)+returnrun_git("maintenance","run",+"--task",tasks[i].task,NULL);++if(register_dir())+return-1;+for(i=1;tasks[i].arg;i++)+if(run_git("maintenance","run",+"--task",tasks[i].task,NULL))+return-1;+return0;+}+staticintremove_deleted_enlistment(structstrbuf*path){intres=0;
@@ -98,6 +99,24 @@ unregister [<enlistment>]:: Remove the specified repository from the list of repositories registered with Scalar and stop the scheduled background maintenance.+Run+~~~++scalar run ( all | config | commit-graph | fetch | loose-objects | pack-files ) [<enlistment>]::+ Run the given maintenance task (or all tasks, if `all` was specified).+ Except for `all` and `config`, this subcommand simply hands off to+ linkgit:git-maintenance[1] (mapping `fetch` to `prefetch` and+ `pack-files` to `incremental-repack`).+++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.+++The `config` 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 `scalar clone`+automatically, explicit invocations of this task are rarely needed.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:28:04
From: Johannes Schindelin <redacted>
This comes in handy during Scalar upgrades, or when config settings were
messed up by mistake.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 79 +++++++++++++++++++++-----------
contrib/scalar/scalar.txt | 8 ++++
contrib/scalar/t/t9099-scalar.sh | 8 ++++
3 files changed, 67 insertions(+), 28 deletions(-)
@@ -117,6 +118,13 @@ opinionated default settings that make Git work more efficiently with large repositories. As this task is run as part of `scalar clone` automatically, explicit invocations of this task are rarely needed.+Reconfigure+~~~~~~~~~~~++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.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:28:05
From: Johannes Schindelin <redacted>
After a Scalar upgrade, it can come in really handy if there is an easy
way to reconfigure all Scalar enlistments. This new option offers this
functionality.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 61 ++++++++++++++++++++++++++++++--
contrib/scalar/scalar.txt | 9 +++--
contrib/scalar/t/t9099-scalar.sh | 3 ++
3 files changed, 67 insertions(+), 6 deletions(-)
@@ -487,22 +487,77 @@ static int cmd_register(int argc, const char **argv)returnregister_dir();}+staticintget_scalar_repos(constchar*key,constchar*value,void*data)+{+structstring_list*list=data;++if(!strcmp(key,"scalar.repo"))+string_list_append(list,value);++return0;+}+staticintcmd_reconfigure(intargc,constchar**argv){+intall=0;structoptionoptions[]={+OPT_BOOL('a',"all",&all,+N_("reconfigure all registered enlistments")),OPT_END(),};constchar*constusage[]={-N_("scalar reconfigure [<enlistment>]"),+N_("scalar reconfigure [--all | <enlistment>]"),NULL};+structstring_listscalar_repos=STRING_LIST_INIT_DUP;+inti,res=0;+structrepositoryr={NULL};+structstrbufcommondir=STRBUF_INIT,gitdir=STRBUF_INIT;argc=parse_options(argc,argv,NULL,options,usage,0);-setup_enlistment_directory(argc,argv,usage,options,NULL);+if(!all){+setup_enlistment_directory(argc,argv,usage,options,NULL);++returnset_recommended_config(1);+}++if(argc>0)+usage_msg_opt(_("--all or <enlistment>, but not both"),+usage,options);++git_config(get_scalar_repos,&scalar_repos);-returnset_recommended_config(1);+for(i=0;i<scalar_repos.nr;i++){+constchar*dir=scalar_repos.items[i].string;++strbuf_reset(&commondir);+strbuf_reset(&gitdir);++if(chdir(dir)<0){+warning_errno(_("could not switch to '%s'"),dir);+res=-1;+}elseif(discover_git_directory(&commondir,&gitdir)<0){+warning_errno(_("git repository gone in '%s'"),dir);+res=-1;+}else{+git_config_clear();++the_repository=&r;+r.commondir=commondir.buf;+r.gitdir=gitdir.buf;++if(set_recommended_config(1)<0)+res=-1;+}+}++string_list_clear(&scalar_repos,1);+strbuf_release(&commondir);+strbuf_release(&gitdir);++returnres;}staticintcmd_run(intargc,constchar**argv)
@@ -32,8 +32,8 @@ an existing Git worktree with Scalar whose name is not `src`, the enlistment will be identical to the worktree. The `scalar` command implements various subcommands, and different options-depending on the subcommand. With the exception of `clone` and `list`, all-subcommands expect to be run in an enlistment.+depending on the subcommand. With the exception of `clone`, `list` and+`reconfigure --all`, all subcommands expect to be run in an enlistment. COMMANDS --------
@@ -125,6 +125,9 @@ 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.+With the `--all` option, all enlistments currently registered with Scalar+will be reconfigured. Use this option after each Scalar upgrade.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Matthew John Cheetham via GitGitGadget <hidden> Date: 2021-10-27 08:28:08
From: Matthew John Cheetham <redacted>
Delete an enlistment by first unregistering the repository and then
deleting the enlistment directory (usually the directory containing the
worktree `src/` directory).
On Windows, if the current directory is inside the enlistment's
directory, change to the parent of the enlistment directory, to allow us
to delete the enlistment (directories used by processes e.g. as current
working directories cannot be deleted on Windows).
Co-authored-by: Victoria Dye [off-list ref]
Signed-off-by: Matthew John Cheetham <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 63 ++++++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 8 ++++
contrib/scalar/t/t9099-scalar.sh | 9 +++++
3 files changed, 80 insertions(+)
@@ -327,6 +329,33 @@ static char *remote_default_branch(const char *url)returnNULL;}+staticintdelete_enlistment(structstrbuf*enlistment)+{+#ifdef WIN32+structstrbufparent=STRBUF_INIT;+#endif++if(unregister_dir())+die(_("failed to unregister repository"));++#ifdef WIN32+/*+*Changethecurrentdirectorytooneoutsideoftheenlistmentso+*thatwemaydeleteeverythingunderneathit.+*/+strbuf_addbuf(&parent,enlistment);+strbuf_parent_directory(&parent);+if(chdir(parent.buf)<0)+die_errno(_("could not switch to '%s'"),parent.buf);+strbuf_release(&parent);+#endif++if(remove_dir_recursively(enlistment,0))+die(_("failed to delete enlistment directory"));++return0;+}+staticintcmd_clone(intargc,constchar**argv){constchar*branch=NULL;
@@ -687,6 +716,39 @@ static int cmd_unregister(int argc, const char **argv)returnunregister_dir();}+staticintcmd_delete(intargc,constchar**argv)+{+char*cwd=xgetcwd();+structoptionoptions[]={+OPT_END(),+};+constchar*constusage[]={+N_("scalar delete <enlistment>"),+NULL+};+structstrbufenlistment=STRBUF_INIT;+intres=0;++argc=parse_options(argc,argv,NULL,options,+usage,0);++if(argc!=1)+usage_with_options(usage,options);++setup_enlistment_directory(argc,argv,usage,options,&enlistment);++if(dir_inside_of(cwd,enlistment.buf)>=0)+res=error(_("refusing to delete current working directory"));+else{+close_object_store(the_repository->objects);+res=delete_enlistment(&enlistment);+}+strbuf_release(&enlistment);+free(cwd);++returnres;+}+staticstruct{constchar*name;int(*fn)(int,constchar**);
@@ -128,6 +129,13 @@ reconfigure the enlistment. With the `--all` option, all enlistments currently registered with Scalar will be reconfigured. Use this option after each Scalar upgrade.+Delete+~~~~~~++delete <enlistment>::+ This subcommand lets you delete an existing Scalar enlistment from your+ local file system, unregistering the repository.+ SEE ALSO -------- linkgit:git-clone[1], linkgit:git-maintenance[1].
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:28:09
From: Johannes Schindelin <redacted>
The .NET version of Scalar has a `version` command. This was necessary
because it was versioned independently of Git.
Since Scalar is now tightly coupled with Git, it does not make sense for
them to show different versions. Therefore, it shows the same output as
`git version`. For backwards-compatibility with the .NET version,
`scalar version` prints to `stderr`, though (`git version` prints to
`stdout` instead).
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-10-27 08:28:11
From: Johannes Schindelin <redacted>
The `git` executable has these two very useful options:
-C <directory>:
switch to the specified directory before performing any actions
-c <key>=<value>:
temporarily configure this setting for the duration of the
specified scalar subcommand
With this commit, we teach the `scalar` executable the same trick.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/scalar.c | 22 +++++++++++++++++++++-
contrib/scalar/scalar.txt | 10 ++++++++++
2 files changed, 31 insertions(+), 1 deletion(-)
@@ -807,6 +807,25 @@ int cmd_main(int argc, const char **argv)structstrbufscalar_usage=STRBUF_INIT;inti;+while(argc>1&&*argv[1]=='-'){+if(!strcmp(argv[1],"-C")){+if(argc<3)+die(_("-C requires a <directory>"));+if(chdir(argv[2])<0)+die_errno(_("could not change to '%s'"),+argv[2]);+argc-=2;+argv+=2;+}elseif(!strcmp(argv[1],"-c")){+if(argc<3)+die(_("-c requires a <key>=<value> argument"));+git_config_push_parameter(argv[2]);+argc-=2;+argv+=2;+}else+break;+}+if(argc>1){argv++;argc--;
@@ -36,6 +36,16 @@ The `scalar` command implements various subcommands, and different options depending on the subcommand. With the exception of `clone`, `list` and `reconfigure --all`, all subcommands expect to be run in an enlistment.+The following options can be specified _before_ the subcommand:++-C <directory>::+ Before running the subcommand, change the working directory. This+ option imitates the same option of linkgit:git[1].++-c <key>=<value>::+ For the duration of running the specified subcommand, configure this+ setting. This option imitates the same option of linkgit:git[1].+ COMMANDS --------
On 10/27/2021 4:27 AM, Johannes Schindelin via GitGitGadget wrote:
tl;dr: This series contributes the core part of the Scalar command to the
Git project. This command provides an opinionated way to create and
configure Git repositories with a focus on very large repositories.
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-11-17 14:19:29
tl;dr: This series contributes the core part of the Scalar command to the
Git project. This command provides an opinionated way to create and
configure Git repositories with a focus on very large repositories.
Changes since v6:
* Rebased on top of v2.34.0.
* Inserted a commit that adds contrib/scalar/README.md, containing the
roadmap of what I have planned for Scalar.
* The Scalar test's definition of GIT_TEST_MAINT_SCHEDULER has been
adjusted to accommodate for a change in v2.32.0..v2.34.0.
* The config setting defaults now include fetch.showForcedUpdates=false,
which has been identified as helping with a performance issue in large
repositories.
* To avoid mistaking the current patch series for being feature-complete
enough to unleash onto end users, I moved the Makefile rules to build
HTML/manual pages to a later patch series.
* The patch that adds support for -c <key>=<value> and -C <directory> was
moved to its own add-on patch series: While it is obvious that those
options are valuable to have, an open question is whether there are other
"pre-command" options in git that would be useful, too, and I would like
to postpone that discussion to that date.
* I added two patches that I had planned on keeping in an add-on patch
series for later, to build and test Scalar as part of the CI. I am still
not 100% certain that it is a good idea to do so already now, but let's
see what the reviewers have to say.
Changes since v5:
* Fixed the commit message talking about make -C contrib/scalar/Makefile.
* Fixed the git ls-tree invocation suggested in the manual for scalar
clone.
* Invoking make -C contrib/scalar, then changing a source file of libgit.a
and then immediately invoking make -C contrib/scalar again will now
implicitly rebuild libgit.a.
Changes since v4:
* scalar delete now refuses to delete anything if it was started from
within the enlistment.
* scalar delete releases any handles to the object store before deleting
the enlistment.
* The OBJECTS list in the Makefile will now include Scalar.
* scalar register now supports secondary worktrees, in addition to the
primary worktree.
Changes since v3:
* Moved the "Changes since" section to the top, to make it easier to see
what changed.
* Reworded the commit message of the first patch.
* Removed the [RFC] prefix because I did not hear any objections against
putting this into contrib/.
Changes since v2:
* Adjusted the description of the list command in the manual page , as
suggested by Bagas.
* Addressed two style nits in cmd_run().
* The documentation of git reconfigure -a was improved.
Changes since v1:
* A couple typos were fixed
* The code parsing the output of ls-remote was made more readable
* The indentation used in scalar.txt now consistently uses tabs
* We no longer hard-code core.bare = false when registering with Scalar
Background
==========
Microsoft invested a lot of effort into scaling Git to the needs of the
Windows operating system source code. Based on the experience of the first
approach, VFS for Git, the Scalar project was started. Scalar specifically
has as its core goal to funnel all improvements into core Git.
The present
===========
The Scalar project provides a completely functional non-virtual experience
for monorepos. But why stop there. The Scalar project was designed to be a
self-destructing vehicle to allow those key concepts to be moved into core
Git itself for the benefit of all. For example, partial clone,
sparse-checkout, and scheduled background maintenance have already been
upstreamed and removed from Scalar proper. This patch series provides a
C-based implementation of the final remaining portions of the Scalar
command. This will make it easier for users to experiment with the Scalar
command. It will also make it substantially easier to experiment with moving
functionality from Scalar into core Git, while maintaining
backwards-compatibility for existing Scalar users.
The C-based Scalar has been shipped to Scalar users, and can be tested by
any interested reader: https://github.com/microsoft/git/releases/ (it offers
a Git for Windows installer, a macOS package and an Ubuntu package, Scalar
has been included since v2.33.0.vfs.0.0).
Next steps
==========
Since there are existing Scalar users, I want to ensure
backwards-compatibility with its existing command-line interface. Keeping
that in mind, everything in this series is up for discussion.
I obviously believe that Scalar brings a huge benefit, and think that it
would be ideal for all of Scalar's learnings to end up in git clone/git
init/git maintenance eventually. It is also conceivable, however, that the
scalar command could graduate to be a core part of Git at some stage in the
future (such a decision would probably depend highly on users' feedback).
See also the discussion about the architecture of Scalar
[https://lore.kernel.org/git/b67bbef4-e4c3-b6a7-1c7f-7d405902ef8b@gmail.com/],
kicked off by Stolee.
On top of this patch series, I have lined up a few more:
1. Implement a scalar diagnose command.
2. Use the built-in FSMonitor (that patch series obviously needs to wait
for FSMonitor to be integrated).
3. Modify the config machinery to be more generous about concurrent writes,
say, to the user-wide config.
4. A few patches to optionally build and install scalar as part of a
regular Git install (also teaching git help scalar to find the Scalar
documentation
These are included in my vfs-with-scalar branch thicket
[https://github.com/dscho/git/commits/vfs-with-scalar]. On top of that, this
branch thicket also includes patches I do not plan on upstreaming, mainly
because they are too specific either to VFS for Git, or they support Azure
Repos (which does not offer partial clones but speaks the GVFS protocol,
which can be used to emulate partial clones).
One other thing is very interesting about that vfs-with-scalar branch
thicket: it contains a GitHub workflow which will run Scalar's quite
extensive Functional Tests suite. This test suite is quite comprehensive and
caught us a lot of bugs in the past, not only in the Scalar code, but also
core Git.
Epilogue
========
Now, to address some questions that I imagine every reader has who made it
this far:
* Why not put the Scalar functionality directly into core Git, even a
built-in? I wanted to provide an easy way for Git contributors to "play
with" Scalar, without forcing a new top-level command into Git.
* Why implement the Scalar command in the Git code base? Apart from
simplifying Scalar maintenance in the Microsoft port of Git, the tight
version coupling between Git and Scalar reduces the maintenance burden
even further. Besides, I believe that it will make it much easier to
shift functionality from Scalar into core Git, once we took the hurdle of
accepting the Scalar code into the code base.
* Why contribute Scalar to the Git project? We are biased, of course, yet
our data-driven approach provides evidence that Scalar helps handling
huge repositories with ease. By contributing it to the core Git project,
we are able to share it with more users, especially some users who do not
want to install Microsoft's fork of Git. We also hope that a lot of
Scalar (maybe all of it) will end up in core Git, to benefit even more
users.
Derrick Stolee (4):
scalar: 'register' sets recommended config and starts maintenance
scalar: 'unregister' stops background maintenance
scalar: implement 'scalar list'
scalar: implement the `run` command
Johannes Schindelin (12):
scalar: add a README with a roadmap
scalar: create a rudimentary executable
scalar: start documenting the command
scalar: create test infrastructure
cmake: optionally build `scalar`, too
ci: also run the `scalar` tests
scalar: let 'unregister' handle a deleted enlistment directory
gracefully
scalar: implement the `clone` subcommand
scalar: teach 'clone' to support the --single-branch option
scalar: allow reconfiguring an existing enlistment
scalar: teach 'reconfigure' to optionally handle all registered
enlistments
scalar: implement the `version` command
Matthew John Cheetham (1):
scalar: implement the `delete` command
.github/workflows/main.yml | 15 +
Makefile | 9 +
ci/run-build-and-tests.sh | 1 +
ci/run-test-slice.sh | 5 +
contrib/buildsystems/CMakeLists.txt | 14 +
contrib/scalar/.gitignore | 2 +
contrib/scalar/Makefile | 45 ++
contrib/scalar/README.md | 71 +++
contrib/scalar/scalar.c | 826 ++++++++++++++++++++++++++++
contrib/scalar/scalar.txt | 145 +++++
contrib/scalar/t/Makefile | 78 +++
contrib/scalar/t/t9099-scalar.sh | 88 +++
12 files changed, 1299 insertions(+)
create mode 100644 contrib/scalar/.gitignore
create mode 100644 contrib/scalar/Makefile
create mode 100644 contrib/scalar/README.md
create mode 100644 contrib/scalar/scalar.c
create mode 100644 contrib/scalar/scalar.txt
create mode 100644 contrib/scalar/t/Makefile
create mode 100755 contrib/scalar/t/t9099-scalar.sh
base-commit: cd3e606211bb1cf8bc57f7d76bab98cc17a150bc
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1005%2Fdscho%2Fscalar-the-beginning-v7
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1005/dscho/scalar-the-beginning-v7
Pull-Request: https://github.com/gitgitgadget/git/pull/1005
Range-diff vs v6:
-: ----------- > 1: 3aa095dc824 scalar: add a README with a roadmap
1: 9b0b00438ec = 2: e0693cc713c scalar: create a rudimentary executable
2: 40fee75968e ! 3: d80627615f8 scalar: start documenting the command
@@ Metadata
## Commit message ##
scalar: start documenting the command
- This commit establishes the infrastructure to build the manual page for
- the `scalar` command.
+ Let's build up the documentation for the Scalar command along with the
+ patches that implement its functionality.
- Signed-off-by: Johannes Schindelin [off-list ref]
-
- ## contrib/scalar/.gitignore ##
-@@
-+/*.xml
-+/*.1
-+/*.html
- /*.exe
- /scalar
+ Note: To discourage the feature-incomplete documentation from being
+ mistaken for the complete thing, we do not yet provide any way to build
+ HTML or manual pages from the text file.
- ## contrib/scalar/Makefile ##
-@@ contrib/scalar/Makefile: ifndef V
- QUIET_SUBDIR0 = +@subdir=
- QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
- $(MAKE) $(PRINT_DIR) -C $$subdir
-+ QUIET = @
- else
- export V
- endif
-@@ contrib/scalar/Makefile: $(TARGETS): $(GITLIBS) scalar.c
-
- clean:
- $(RM) $(TARGETS)
-+ $(RM) scalar.1 scalar.html scalar.xml
-
--.PHONY: $(GITLIBS) all clean FORCE
-+docs: scalar.html scalar.1
-+
-+scalar.html: | scalar.1 # prevent them from trying to build `doc.dep` in parallel
-+
-+scalar.html scalar.1: scalar.txt
-+ $(QUIET_SUBDIR0)../../Documentation$(QUIET_SUBDIR1) \
-+ MAN_TXT=../contrib/scalar/scalar.txt \
-+ ../contrib/scalar/$@
-+ $(QUIET)test scalar.1 != "$@" || mv ../../Documentation/$@ .
-+
-+.PHONY: $(GITLIBS) all clean docs FORCE
+ Signed-off-by: Johannes Schindelin [off-list ref]
## contrib/scalar/scalar.txt (new) ##
@@
3: e3507c2d5f7 ! 4: 9da1616849e scalar: create test infrastructure
@@ Commit message
more tests in subsequent commits that introduce corresponding, new
functionality.
- Note: this test script is intended to test `scalar` only lightly, even
+ Note: This test script is intended to test `scalar` only lightly, even
after all of the functionality is implemented.
A more comprehensive functional (or: integration) test suite can be
found at https://github.com/microsoft/scalar; It is used in the workflow
https://github.com/microsoft/git/blob/HEAD/.github/workflows/scalar-functional-tests.yml
in Microsoft's Git fork. This test suite performs end-to-end tests with
- a real remote repository, and is run as part of the regular CI builds.
+ a real remote repository, and is run as part of the regular CI and PR
+ builds in that fork.
+
Since those tests require some functionality supported only by
Microsoft's Git fork ("GVFS protocol"), there is no intention to port
that fuller test suite to `contrib/scalar/`.
@@ contrib/scalar/Makefile: $(TARGETS): $(GITLIBS) scalar.c
clean:
- $(RM) $(TARGETS)
+ $(RM) $(TARGETS) ../../bin-wrappers/scalar
- $(RM) scalar.1 scalar.html scalar.xml
+-.PHONY: $(GITLIBS) all clean FORCE
+../../bin-wrappers/scalar: ../../wrap-for-bin.sh Makefile
+ @mkdir -p ../../bin-wrappers
+ $(QUIET_GEN)sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
@@ contrib/scalar/Makefile: $(TARGETS): $(GITLIBS) scalar.c
+test: all
+ $(MAKE) -C t
+
- docs: scalar.html scalar.1
-
- scalar.html: | scalar.1 # prevent them from trying to build `doc.dep` in parallel
-@@ contrib/scalar/Makefile: scalar.html scalar.1: scalar.txt
- ../contrib/scalar/$@
- $(QUIET)test scalar.1 != "$@" || mv ../../Documentation/$@ .
-
--.PHONY: $(GITLIBS) all clean docs FORCE
-+.PHONY: $(GITLIBS) all clean docs test FORCE
++.PHONY: $(GITLIBS) all clean test FORCE
## contrib/scalar/t/Makefile (new) ##
@@
-: ----------- > 5: dbaad4753c1 cmake: optionally build `scalar`, too
-: ----------- > 6: 1b0328fa236 ci: also run the `scalar` tests
4: 53224e506ea ! 7: cca604ef326 scalar: 'register' sets recommended config and starts maintenance
@@ contrib/scalar/scalar.c
+ { "commitGraph.generationVersion", "1" },
+ { "core.autoCRLF", "false" },
+ { "core.safeCRLF", "false" },
++ { "fetch.showForcedUpdates", "false" },
+ { NULL, NULL },
+ };
+ int i;
5: 3591e53700b = 8: 9fea89cd161 scalar: 'unregister' stops background maintenance
6: fe04ae7ec66 = 9: 5e077bf892b scalar: let 'unregister' handle a deleted enlistment directory gracefully
7: 136aec439fd = 10: dfa0c470989 scalar: implement 'scalar list'
8: ed24a5e9b4c ! 11: febefe39886 scalar: implement the `clone` subcommand
@@ contrib/scalar/t/t9099-scalar.sh: PATH=$PWD/..:$PATH
. ../../../t/test-lib.sh
-+GIT_TEST_MAINT_SCHEDULER="crontab:test-tool crontab ../cron.txt"
++GIT_TEST_MAINT_SCHEDULER="crontab:test-tool crontab ../cron.txt,launchctl:true,schtasks:true"
+export GIT_TEST_MAINT_SCHEDULER
+
test_expect_success 'scalar shows a usage' '
9: 5ee54a9e25f = 12: 2677bcff335 scalar: teach 'clone' to support the --single-branch option
10: 3361eb8f091 = 13: 99affb84284 scalar: implement the `run` command
11: c4778c1dc5f = 14: 69e2242240b scalar: allow reconfiguring an existing enlistment
12: cd824e9e483 = 15: 0068c18aa62 scalar: teach 'reconfigure' to optionally handle all registered enlistments
13: 843026d5481 = 16: d5218523a38 scalar: implement the `delete` command
14: 5ca169b3f3a = 17: 96a803416b5 scalar: implement the `version` command
15: e3a6eea0534 < -: ----------- scalar: accept -C and -c options before the subcommand
--
gitgitgadget
From: Johannes Schindelin via GitGitGadget <hidden> Date: 2021-11-17 14:19:30
From: Johannes Schindelin <redacted>
The Scalar command will be contributed incrementally, over a bunch of
patch series. Let's document what Scalar is about, and then describe the
patch series that are planned.
Signed-off-by: Johannes Schindelin <redacted>
---
contrib/scalar/README.md | 71 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
create mode 100644 contrib/scalar/README.md
@@ -0,0 +1,71 @@+# Scalar - an opinionated repository management tool++Scalar is an add-on to Git, helping Git scale to very large repositories and+worktrees. Originally implemented in C# using .NET Core, based on the learnings+from the VFS for Git project, most of the techniques developed by the Scalar+project have been integrated into core Git already:++*partial clone,+*commit graphs,+*multi-pack index,+*sparse checkout (cone mode),+*scheduled background maintenance,+*etc++This directory contains the remaining parts of Scalar that are not (yet) in+core Git.++## Roadmap++The idea is to populate this directory via incremental patch series and+eventually move to a top-level directory next to `gitk-git/` and to `git-gui/`. The+current plan involves the following patch series:++-`scalar-the-beginning`: The initial patch series which sets up+`contrib/scalar/` and populates it with a minimal `scalar` command that+ demonstrates the fundamental ideas.++-`scalar-c-and-C`: The `scalar` command learns about two options that can be+ specified before the command, `-c <key>=<value>` and `-C <directory>`.++-`scalar-diagnose`: The `scalar` command is taught the `diagnose` subcommand.++-`scalar-and-builtin-fsmonitor`: The built-in FSMonitor is enabled in `scalar+ init` and in `scalar clone`, for an enormous performance boost when working+ in large worktrees. This patch series necessarily depends on Jeff Hostetler's+ FSMonitor patch series to be integrated into Git.++-`scalar-gentler-config-locking`: Scalar enlistments are registered in the+ user's Git config. This usually does not represent any problem because it is+ rare for a user to register an enlistment. However, in Scalar's functional+ tests, Scalar enlistments are created galore, and in parallel, which can lead+ to lock contention. This patch series works around that problem by re-trying+ to lock the config file in a gentle fashion.++-`scalar-extra-docs`: Add some extensive documentation that has been written+ in the original Scalar project (all subject to discussion, of course).++-`optionally-install-scalar`: Now that Scalar is feature (and documentation)+ complete and is verified in CI builds, let's offer to install it.++-`move-scalar-to-toplevel`: Now that Scalar is complete, let's move it next to+`gitk-git/` and to `git-gui/`, making it a top-level command.++The following two patch series exist, but there is no plan to integrate them+into Git's source tree:++-`scalar-with-gvfs`: The primary purpose of this patch series is to support+ existing Scalar users whose repositories are hosted in Azure Repos (which+ does not support Git's partial clones, but supports its predecessor, the GVFS+ protocol, which is used by Scalar to emulate the partial clone).++ Since the GVFS protocol will never be supported by core Git, this patch+ series will remain in Microsoft's fork of Git.++-`run-scalar-functional-tests`: The Scalar project developed a quite+ comprehensive set of integration tests (or, "Functional Tests"). They are the+ sole remaining part of the original C#-based Scalar project, and this patch+ adds a GitHub workflow that runs them all.++ Since the tests partially depend on features that are only provided in the+`scalar-with-gvfs` patch series, this patch cannot be upstreamed.