-
Notifications
You must be signed in to change notification settings - Fork 106
Add --ref-format option to scalar clone
#829
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: vfs-2.51.2
Are you sure you want to change the base?
Conversation
Add ability to run Git commands for Scalar by passing a struct strvec rather than having to use varargs. Signed-off-by: Matthew John Cheetham <mjcheetham@outlook.com>
dscho
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will also need a corresponding PR for vfs-2.52.0, unfortunately.
Add the `--ref-format` option to the `scalar clone` command. This will allow users to opt-in to creating a Scalar repository using alternative ref storage backends, such as reftable. Example: scalar clone --ref-format reftable $URL Signed-off-by: Matthew John Cheetham <mjcheetham@outlook.com>
616e5f7 to
2f1cd80
Compare
|
Actually.. I guess that we'll just want the 2.52 targeting PR, right? I only target 2.51.2 in this PR since it's the default branch still. |
That would at least allow us to use |
|
@mjcheetham: This is something that we could send upstream, too, right? |
Yes!!! |
Add the
--ref-formatoption to thescalar clonecommand. This will allow users to opt-in to creating a Scalar repository using alternative ref storage backends, such as reftable. Example:scalar clone --ref-format reftable $URL