-
Sorry if I am misunderstand this project, this project mirrors from GitHub in one direction (no two-way sync)? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
@JanRK The Gitea's built in mirroring is either push only mirroring or pull only mirroring. Ref I was looking for a way to backup all my Github repos locally so that incase I get locked out of github or I am banned for some reason or maybe hacked. I can still have access to a copy of all my repos. This app does all that automatically. It takes all your github repos and orgs and then makes a read-only mirror in gitea. Doing a two way sync will make it complex and result in merge conflicts thats not possible to handle automatically. So this is a backup solution for your whole github account. |
Beta Was this translation helpful? Give feedback.
-
👋🏻 This looks like a cool project! So it piggybacks off of Forgejo's mirroring technology, and just keeps track of whether or not your GitHub user's repos are mirrored? Forgive me if this question is answered elsewhere, but can you also make it sync organization repos? |
Beta Was this translation helpful? Give feedback.
-
Hi @WillNilges sync org repos is already there.
Yes it uses the gitea api's to set this up and keeps track. |
Beta Was this translation helpful? Give feedback.
@JanRK The Gitea's built in mirroring is either push only mirroring or pull only mirroring. Ref
and it needs to be done for each repo indivitually.
I was looking for a way to backup all my Github repos locally so that incase I get locked out of github or I am banned for some reason or maybe hacked. I can still have access to a copy of all my repos.
Along with that if a project I had starred for some reason is removed or something happens I keep a local copy. Same for all my orgs.
This app does all that automatically. It takes all your github repos and orgs and then makes a read-only mirror in gitea. Doing a two way sync will make it complex and result in merge conflicts thats not possible…