]> source.dussan.org Git - gitea.git/commit
Ignore non-standard refs in git push (#6758)
authorJames E. Blair <corvus@inaugust.com>
Tue, 14 May 2019 14:40:27 +0000 (07:40 -0700)
committertechknowlogick <techknowlogick@gitea.io>
Tue, 14 May 2019 14:40:27 +0000 (10:40 -0400)
commit488d34691ad79bae13320f3e831a7ff46c245a89
tree7b9bd09258698378c6d8dae41ee169bf4d8cb081
parent24a536d1450f6214dda8bc87645b4c8643e9e173
Ignore non-standard refs in git push (#6758)

When replicating to gitea from a remote system which makes use of
git refs to store extra data (for example, gerrit), pushing a lot
of refs to gitea can cause problems due to the extra processing
that the pre and post receive hooks perform.  But it's still
useful for gitea to be able to serve those refs.  This change
skips unecessary processing of refs other than branches or tags.

We don't need to check any ref that isn't a branch for branch
protection (protection will never be enabled).  So in the
pre-receive hook, we wrap that check in a test for whether the
ref is a branch.

We also don't need to add information to the activity stream about
pushes to non-standard refs, so we skip that step in the
post-receive hook for refs which are not branches or tags.

For some concrete examples, gerrit maintains a ref for every
patchset of every change in the form refs/changes/XX/YYYY/Z.
Many systems use refs/notes to store additonal data about commits.
This change allows these and other schemes to be used without
affecting gitea.
cmd/hook.go