]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/git_test_receive_wrapper_fails.mdwn
fcac46c5f1cc3e6ebdef01642ce0633a5f8238c2
[git.ikiwiki.info.git] / doc / bugs / git_test_receive_wrapper_fails.mdwn
1 Getting this when a git push to git:// runs the pre-receive hook
2 which is set up by the `git_test_receive_wrapper`:
4         remote: fatal: Not a git repository (or any of the parent directories): .git
5         remote: 'git log --pretty=raw --raw --abbrev=40 --always -c -r 21161ba01a093534ef97188eae098d83554dbcc6..73820a1d7e76318d8b1ac23e1c6d47e50a3e8ca2 --no-renames -- .' failed: 
6         To git://git-annex.branchable.com/
7          ! [remote rejected]     master -> master (pre-receive hook declined)
8         error: failed to push some refs to 'git://git-annex.branchable.com/'
10 Relevant code:
12                 # Avoid chdir when running git here, because the changes
13                 # are in the master git repo, not the srcdir repo.
14                 # (Also, if a subdir is involved, we don't want to chdir to
15                 # it and only see changes in it.)
16                 # The pre-receive hook already puts us in the right place.
17                 push @rets, git_parse_changes('.', 0, git_commit_info('.', $oldrev."..".$newrev));
19 This is with  git 1:2.11.0-3+deb9u2 on debian stable, ikiwiki 3.20171002.
21 Tossing a call to pwd in there, it's at the top of the master (bare) git
22 repository, which seems right. I can do a similar git log at that location
23 manually (using different revs). Looking at the environment at that point
24 (in another wiki that has the same problem), I found only these
25 git env vars:
27         remote: GIT_ALTERNATE_OBJECT_DIRECTORIES=/home/b-joeyh/source.git/./objects
28         remote: GIT_OBJECT_DIRECTORY=/home/b-joeyh/source.git/./objects/incoming-hVfXvD
29         remote: GIT_QUARANTINE_PATH=/home/b-joeyh/source.git/./objects/incoming-hVfXvD
31 [[!commit 6fb43c29f63b85c3424520819427903e5a204426]] is relevant to that,
32 and I guess it didn't fully solve the problem.
33 --[[Joey]]