I have a repository under Gitea and another one under GitHub. I need to connect these two in a way that: create a dedicated branches in both repositories and connect the branches. For example:
- Gitea repo has a branch:
/send-to-github
- GitHub repo has a branch:
/receive-from-gitea
Every time when I push the commit in Gitea, the commit automatically triggers an event that pushes the very same code in the GitHub branch.
How can this be accomplished?
You can change remote URL as you wish. You can check this answer for more info: How to change the URI (URL) for a remote Git repository?
So one way to do this would be to create a script that will do the following on every push:
Note that this will cause issues when multiple people are using the repo. Basically you would have to duplicate all git actions to work with both repositories.
Other approach could be if GitHub is used as a "backup" repo to create a recurring job that will pull form repo A and force push to repo B