Dear all,
With git 2.33.0, the "reference-transaction" hook does not change the
working directory to the worktree (or GIT_DIR) when launched on `git
clone`. It is just unchanged in this exact scenario.
MWE:
cd temp
git init A
mkdir -p templates/hooks && echo "CWD: pwd" >
templates/hooks/reference-transaction
git config --global init.templateDir templates
git clone A test
Wrong Output:
CWD: temp
CWD: temp
CWD: temp
CWD: temp
I have seen this problems already on other occasion with other hooks.
Probably the problem exists also there.
Thanks for fixing this if this is really a bug (??).
BR