diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2022-09-30 01:20:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-29 19:20:22 +0200 |
commit | 3b6a7e5c8a994836d034adde4277b50ade020d1b (patch) | |
tree | fb519860a0973bdd08d2d346a42696a629b4924c /docs | |
parent | 1d3095b71849d7084a26638af831e284d942cb43 (diff) | |
download | gitea-3b6a7e5c8a994836d034adde4277b50ade020d1b.tar.gz gitea-3b6a7e5c8a994836d034adde4277b50ade020d1b.zip |
Fix the hook related FAQ contents (#21297)
Follows
https://github.com/go-gitea/gitea/issues/21129#issuecomment-1260802986
* https://github.com/go-gitea/gitea/issues/21129#issuecomment-1260802986
A lot of users are asking similar questions.
The old content in FAQ doesn't seem to be related to the problem.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/help/faq.en-us.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/content/doc/help/faq.en-us.md b/docs/content/doc/help/faq.en-us.md index f71cd734a5..a59abe8335 100644 --- a/docs/content/doc/help/faq.en-us.md +++ b/docs/content/doc/help/faq.en-us.md @@ -214,13 +214,13 @@ Our translations are currently crowd-sourced on our [Crowdin project](https://cr Whether you want to change a translation or add a new one, it will need to be there as all translations are overwritten in our CI via the Crowdin integration. -## Hooks aren't running +## Push Hook / Webhook aren't running -If Gitea is not running hooks, a common cause is incorrect setup of SSH keys. +If you can push but can't see push activities on the home dashboard, or the push doesn't trigger webhook, there are a few possibilities: -See [SSH Issues](#ssh-issues) for more information. - -You can also try logging into the administration panel and running the `Resynchronize pre-receive, update and post-receive hooks of all repositories.` option. +1. The git hooks are out of sync: run "Resynchronize pre-receive, update and post-receive hooks of all repositories" on the site admin panel +2. The git repositories (and hooks) are stored on some filesystems (ex: mounted by NAS) which don't support script execution, make sure the filesystem supports `chmod a+x any-script` +3. If you are using docker, make sure Docker Server (not the client) >= 20.10.6 ## SSH issues |