mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-13 05:26:16 +01:00
Backport #26096 by @thigg related #1635 #18159 This will probably be obsolete at some point, but it should not break anything and it may help some users Co-authored-by: thigg <thigg@users.noreply.github.com>
This commit is contained in:
parent
3b518a3af5
commit
5992365fc1
1 changed files with 13 additions and 0 deletions
|
@ -92,3 +92,16 @@ To set up a mirror from Gitea to Bitbucket, you need to follow these steps:
|
||||||
4. Select **Add Push Mirror** to save the configuration.
|
4. Select **Add Push Mirror** to save the configuration.
|
||||||
|
|
||||||
The repository pushes shortly thereafter. To force a push, select the **Synchronize Now** button.
|
The repository pushes shortly thereafter. To force a push, select the **Synchronize Now** button.
|
||||||
|
|
||||||
|
### Mirror an existing ssh repository
|
||||||
|
|
||||||
|
Currently gitea supports no ssh push mirrors. You can work around this by adding a `post-receive` hook to your gitea repository that pushes manually.
|
||||||
|
|
||||||
|
1. Make sure the user running gitea has access to the git repo you are trying to mirror to from shell.
|
||||||
|
2. On the Webinterface at the repository settings > git hooks add a post-receive hook for the mirror. I.e.
|
||||||
|
|
||||||
|
```
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
git push --mirror --quiet git@github.com:username/repository.git &>/dev/null &
|
||||||
|
echo "GitHub mirror initiated .."
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue