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

Resolve core.hooksPath relative to GIT_WORK_TREE #2571

Merged
merged 3 commits into from
Apr 4, 2025

Conversation

naseschwarz
Copy link
Contributor

@naseschwarz naseschwarz commented Mar 18, 2025

git supports a relative path in core.hooksPath.

man git-config:

A relative path is taken as relative to the directory where the hooks are
run (see the "DESCRIPTION" section of githooks[5]).

man githooks:

Before Git invokes a hook, it changes its working directory to either
$GIT_DIR in a bare repository or the root of the working tree in a >
non-bare repository.

I.e. relative paths in core.hooksPath in non-bare repositories are always relative to GIT_WORK_TREE.

There is a further exception; I believe this is not considered for path resolution:

An exception are hooks triggered during a push (pre-receive, update,
post-receive, post-update, push-to-checkout) which are always executed
in $GIT_DIR.

This Pull Request fixes/closes #2281.

It changes the following:

  • Synchronizes core.hooksPath resolution with the git command line client

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

@naseschwarz naseschwarz force-pushed the issue-2281-fix branch 3 times, most recently from 22ad6a9 to d66d148 Compare March 18, 2025 23:02
@naseschwarz naseschwarz marked this pull request as ready for review March 19, 2025 12:34
@extrawurst extrawurst requested a review from Byron March 22, 2025 10:51
@extrawurst
Copy link
Collaborator

@Byron this might affect Gitbutler. Would love your pair of eyes

@naseschwarz naseschwarz marked this pull request as draft March 22, 2025 11:59
@naseschwarz naseschwarz marked this pull request as ready for review March 23, 2025 00:19
Copy link

@Byron Byron left a comment

Choose a reason for hiding this comment

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

Thanks for calling me in @extrawurst , and thanks @naseschwarz for tackling this!

I'd arrive at the same conclusion on how the implementation should look like, and it's great to see all the right tests.

Of course, I'd have a few nits but they are not material.

It's worth noting that core.hooksPath is very relevant to security on shared drives in particular, and since git2 follows Git and will refuse to open such repositories it should be safe to use core.hooksPath here. In gitoxide one would use trusted_path() instead to obtain the fully-interpolated path if it's in a trusted configuration file.

@naseschwarz
Copy link
Contributor Author

Thank you for your time and input, @Byron.

Naseschwarz added 2 commits March 23, 2025 14:33
git supports relative values in core.hooksPath.

`man git-config`:

> A relative path is taken as relative to the directory where the hooks are
> run (see the "DESCRIPTION" section of githooks[5]).

`man githooks`:

> Before Git invokes a hook, it changes its working directory to either
> $GIT_DIR in a bare repository or the root of the working tree in a >
> non-bare repository.

I.e. relative paths in core.hooksPath in non-bare repositories are always
relative to GIT_WORK_TREE.

There is a further exception; I believe this is not considered for path
resolution:

> An exception are hooks triggered during a push (pre-receive, update,
> post-receive, post-update, push-to-checkout) which are always executed
> in $GIT_DIR.
This more clearly errors in case of bare repositories instead of using
the parent directory of the bare repository.
@extrawurst extrawurst merged commit 7f75307 into gitui-org:master Apr 4, 2025
17 of 21 checks passed
@extrawurst
Copy link
Collaborator

Thank you!

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

Successfully merging this pull request may close these issues.

Pre-commit hooks are executed only when launched from the git root
3 participants