mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 01:03:39 +01:00
488d34691a
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. |
||
---|---|---|
.. | ||
admin.go | ||
cert.go | ||
cmd.go | ||
dump.go | ||
generate.go | ||
hook.go | ||
keys.go | ||
migrate.go | ||
serv.go | ||
web_graceful.go | ||
web_windows.go | ||
web.go |