Skip to content
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

Run git-hooks more correctly #2483

Open
wants to merge 63 commits into
base: master
Choose a base branch
from

Conversation

Joshix-1
Copy link
Contributor

@Joshix-1 Joshix-1 commented Jan 15, 2025

This Pull Request fixes #2482.

It changes the following:

  • Improve how git-hooks get run

I followed the checklist:

  • I added unittests
  • I ran make check without errors
  • I tested the overall application
  • I added an appropriate item to the changelog

Didn't test this on Windows

@Joshix-1 Joshix-1 force-pushed the git-hooks-shell-fix branch from 859aa5a to 2d90eb5 Compare January 15, 2025 19:11
@extrawurst
Copy link
Collaborator

Is there any way to write a test for this?

@Joshix-1
Copy link
Contributor Author

Joshix-1 commented Jan 15, 2025

In GitoxideLabs/gitoxide@51bbb86#diff-b1f4fc8d8a8a51923a922a937745a1f5665443821b5c4df58efa44c7c4515216 there is a check if the file returned by path() exists. But that isn't really a useful test.

Maybe there could be some sort of integration test that creates a git-repo with hooks that then runs run_hook. But that wouldn't really help as that would only test one setup and this is about making it work on as many setups as possible.

@extrawurst
Copy link
Collaborator

Maybe there could be some sort of integration test that creates a git-repo with hooks that then runs run_hook

we do exactly that in the hooks unittests

@Joshix-1
Copy link
Contributor Author

running the tests with SHELL=false or something like that, would check that the SHELL variable is ignored, but I'm not sure if that's helpful

@Joshix-1
Copy link
Contributor Author

Why is -l added to the shell args?

git only adds -c https://github.com/git/git/blob/757161efcca150a9a96b312d9e780a071e601a03/run-command.c#L294-L306 and if i see that correctly it doesn't use string concatenation to provide arguments to the script.

@Joshix-1 Joshix-1 marked this pull request as draft January 15, 2025 20:52
@Joshix-1 Joshix-1 changed the title use /bin/sh for git-hooks Run git-hooks more correctly Jan 15, 2025
@Joshix-1 Joshix-1 marked this pull request as ready for review January 15, 2025 21:47
@Joshix-1
Copy link
Contributor Author

I think on non-Windows platforms it's best to just execute the hooks directly. I don't see a reason to use a shell.

Copy link
Contributor

@naseschwarz naseschwarz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your effort on this, @Joshix-1.
Generally, all of this is very reasonable.

Not executing bash -l on linux shaves off 300 ms on my system, too, which is a particularly pleasant aspect of this change! :)

git2-hooks is released separately from gitui, too, so we need to consider this regarding changes in git2-hooks behavior.

Two of the remarks below are just me writing down my thoughts, so that they're mentioned somewhat close to your change, both so why I'd argue that they're correct and so we could potentially refer to them.

let command = {
let mut os_str = std::ffi::OsString::new();
os_str.push("'");
os_str.push(hook.as_os_str()); // TODO: this doesn't work if `hook` contains single-quotes
Copy link
Contributor

@naseschwarz naseschwarz Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is much better than what we did before.

Do you think we could rid ourselves of this last TODO within this PR? Or would you prefer to leave it?

If you want a test for it, I've added a test test_hooks_commit_msg_reject_in_hooks_folder_githooks_moved_absolute that is sensitive in #2571 if patched to use repo_init_with_prefix.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How would you fix that todo? Can we just replace the single quotes?

Copy link
Contributor

@naseschwarz naseschwarz Mar 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The command variable is sh syntax, right? So we just need to replace all ' with '\''.

https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02_02

Copy link
Contributor Author

@Joshix-1 Joshix-1 Mar 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I realised that we probably do not need to use -c without it we should be able to put the arguments just after

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quoting from the link you sent:

Enclosing characters in single-quotes ( '' ) shall preserve the literal value of each character within the single-quotes. A single-quote cannot occur within single-quotes.

naseschwarz pushed a commit to naseschwarz/gitui that referenced this pull request Mar 25, 2025
@Joshix-1 Joshix-1 force-pushed the git-hooks-shell-fix branch from 69224e3 to 38a3484 Compare March 26, 2025 19:01
naseschwarz pushed a commit to naseschwarz/gitui that referenced this pull request Mar 27, 2025
naseschwarz pushed a commit to naseschwarz/gitui that referenced this pull request Mar 27, 2025
naseschwarz pushed a commit to naseschwarz/gitui that referenced this pull request Mar 27, 2025
naseschwarz pushed a commit to naseschwarz/gitui that referenced this pull request Mar 27, 2025
naseschwarz pushed a commit to naseschwarz/gitui that referenced this pull request Mar 27, 2025
naseschwarz pushed a commit to naseschwarz/gitui that referenced this pull request Mar 27, 2025
);
os_str.push(hook.replace('\'', REPLACEMENT));
} else {
os_str.push(hook.as_os_str()); // TODO: this doesn't work if `hook` contains single-quotes
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should probably fail here if there is a single-quote in the string. Trying to execute something where we know it will fail sounds like a bad idea.
Escaping stuff in non-utf8 is hard.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I fully agree.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

git-hooks fail
3 participants