-
Notifications
You must be signed in to change notification settings - Fork 437
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
wip: add footer support #6088
base: main
Are you sure you want to change the base?
wip: add footer support #6088
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
Have you seen @thoughtpolice's #2845 patch, where the footer functionality already is implemented? |
No, I missed it completely. I'll have a look! |
FWIW, Git calls these trailers and has |
I'll look at |
See also: #5290 which can achieve much of the same thing while making it so that the template language does most of the work. I'd like to migrate things like |
We still need someway to work with them in the library though, so taking your footer patch is something to encourage. I also have some downstream work which will profit from it. |
Isn't it working only when editing the description in the editor? I'm almost always writing my commit messages directly in my shell (fish works very well for that), and using the editor only to modify the description. Something like this (a real example from my shell history):
|
390ab1b
to
7971a05
Compare
@emilazy thanks for mentioning @PhilipMetzger I've duplicated @thoughtpolice's commit on footer lib in this PR and made the parser more strictly follow git's specification. And of course, I've used it to implement the add footer feature :-) My next action on this feature would be to add a |
b6d9c50
to
aee3a97
Compare
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.
How is this feature supposed to be used? Is the user expected to create an alias for adding their common trailers? Or do we expect that they will enter the template on the CLI? Or do we expect that users will usually use the config option? Could we start with just the config option in that case?
cli/src/commands/describe.rs
Outdated
/// If multiple revisions are specified, the same footer line will be used | ||
/// for all of them. |
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.
clarify that that's only true if the template doesn't depend on the commit (right?)
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.
that's the same template that will be used on all the commit, not the resulting trailer. I'll clarify that.
cli/src/description_util.rs
Outdated
description: &str, | ||
footer_templates: &[String], | ||
) -> Result<String, CommandError> { | ||
if description.is_empty() || footer_templates.is_empty() { |
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.
why can you not add trailers without a description?
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.
The description seemed to be trimmed, and thus, the trailer would become the first line of the description.
Also, a commit with no description is treated in a special way in jujutsu — it can be discarded as soon as it's no longer the working copy. Adding a footer to an empty description would break that logic.
cli/src/commands/describe.rs
Outdated
/// The value is a commit template. The output generated with that template | ||
/// must be a valid footer entry. |
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.
If the trailer is a template, it means that the user will have to quote string values, which then needs to be shell-quoted to. That may be hard for the user to guess.
cli/src/description_util.rs
Outdated
@@ -343,6 +344,16 @@ pub fn add_footer_entries( | |||
description: &str, | |||
footer_templates: &[String], | |||
) -> Result<String, CommandError> { | |||
let default_footer_templates = tx | |||
.settings() | |||
.get::<Vec<String>>("ui.default-add-footer") |
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.
Please add tests
At first, I was thinking of using aliases, but with multiple commands being impacted, that's not very convenient. With the addition of the config, I'm not using the command line option anymore. Moreover, I'm not very pleased with how the config and cli option are interacting, so I think it's a good idea to remove the command line option. There is another improvement I'd like to implement: make the footer appear in the description when it is edited. Currently, it's added after the edition. I think it would feel more logical to have it directly in the editor. |
If there is no command line option, and the trailer paragraph is included in the description template, then we don't even need a specific configuration. [template-aliases]
"commit_description_trailers" = "signed_off_by" And the template alias would also be used when calling |
e9a36f6
to
90c4591
Compare
I've implemented the tailer feature with a template: [templates]
commit_trailers = "signed_off_by ++ gerrit_change_id" There are more tests to come. I just wanted to give you a chance to react before spending more time on them. |
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.
I've implemented the tailer feature with a template:
[templates] commit_trailers = "signed_off_by ++ gerrit_change_id"
The idea sounds good to me, thanks. I would port only jj describe
in this PR, and split the other command adaptation to separate PR.
To be used for parsing `Change-Id`, `Signed-off-by` and other `Co-authored-by` trailers from commits Co-authored-by: Austin Seipp <[email protected]>
A new `template-aliases.commit_trailer` configuration option allows to define a template for the trailers to add to the descriptn trailer. A new trailer paragraph is created if no trailer paragraph is found in the commit description. The trailer is not added to the trailer paragraph when the trailer is already present, or if the commit description is empty.
Disclaimer: I open this PR as a way to try a possible implementation for the signed-off-by/change-id/… footer, but this is not ready yet by any means! Moreover, this is my first contribution to jj — you've been warned :-)
I have assumed that all the lines in the footer are of the form
a-label-with-dashes: a value up to the end of the line
.That way we can separate a description paragraph that may be just some normal text, and avoid adding the footer to
this last paragraph. For example, in this commit description:
I think we don't want the footer to be next to the last paragraph:
but rather have it in its own paragraph:
and if later we want to add more line to the footer, we want them in the same paragraph:
I've never seen a footer paragraph with lines that wouldn't match this format, but I guess that could be possible. In that case, rerunning
jj desc
would add a new footer paragraph, possibly duplicating the footer lines. We may not want that.On the UI side, there is a new
--add-footer
option injj describe
.It works without
--message
and with--no-edit
, so it can be used to add some footer content without changing thedescription on the command line or in the editor.
Some predefined templates would probably be useful to make the feature easier to use, for example
signed_off_by
orgerrit_change_id
.--add-footer
probably needs to be added to other commands (I would saycommit
,new
andsplit
), but then it wouldbe nice to have a configuration, to define the expected footers in a single place.
ref: #2849
ref: #1399
Checklist
If applicable:
CHANGELOG.md