Haddock repo doesn't accept pushes?

Hi, I've just tried pushing a commit to the Haddock repo on git.haskell.org: 14:45:36 [cactus@galaxy haddock]$ git push -u origin HEAD Counting objects: 9, done. Delta compression using up to 4 threads. Compressing objects: 100% (5/5), done. Writing objects: 100% (5/5), 462 bytes | 0 bytes/s, done. Total 5 (delta 4), reused 0 (delta 0) remote: W refs/heads/master haddock gergo DENIED by refs/.* remote: error: hook declined to update refs/heads/master To ssh://git@git.haskell.org/haddock.git ! [remote rejected] HEAD -> master (hook declined) error: failed to push some refs to 'ssh://git@git.haskell.org/haddock.git' So, OK, maybe I don't remember correctly and I can't push to master, let's push to my branch so that I can ask someone to move it over: 14:46:47 [cactus@galaxy haddock]$ git push --force -u origin HEAD:wip/pattern-synonyms Counting objects: 9, done. Delta compression using up to 4 threads. Compressing objects: 100% (5/5), done. Writing objects: 100% (5/5), 462 bytes | 0 bytes/s, done. Total 5 (delta 4), reused 0 (delta 0) remote: + refs/heads/wip/pattern-synonyms haddock gergo DENIED by refs/.* remote: error: hook declined to update refs/heads/wip/pattern-synonyms To ssh://git@git.haskell.org/haddock.git ! [remote rejected] HEAD -> wip/pattern-synonyms (hook declined) error: failed to push some refs to 'ssh://git@git.haskell.org/haddock.git' I could try merging origin/master into the existing wip/pattern-synonyms branch but there wouldn't be much point in resolving all the merge conflicts, since my local branch (which is just one commit on top of origin/master) is already exactly what I'd want to push to master. So how do I get my commit (which is needed for a patch to GHC proper) into the Haddock repo? Thanks, Gergo

On 2014-05-25 at 08:50:21 +0200, Dr. ERDI Gergo wrote:
Hi,
I've just tried pushing a commit to the Haddock repo on git.haskell.org:
[...]
So how do I get my commit (which is needed for a patch to GHC proper) into the Haddock repo?
short story: push to git@github.com:haskell/haddock.git instead `haddock` is the first repo whose origin-repo got moved to github some time ago, and I meant to write a bit more about how to cope with that.

On Sun, 25 May 2014, Herbert Valerio Riedel wrote:
short story: push to git@github.com:haskell/haddock.git instead
`haddock` is the first repo whose origin-repo got moved to github some time ago, and I meant to write a bit more about how to cope with that.
Worked perfectly, thanks.
participants (2)
-
Dr. ERDI Gergo
-
Herbert Valerio Riedel