-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Align "Upgrade from Gogs" document with more recent versions of Gogs #3487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I just did a manual migration from gogs by copying over these tables from the gogs (MySQL) database into the gitea one (I omitted tables without data, there may be others that need to be copied):
The migration seemed to work without totally breaking the app, but I get 404s now when I try to browse to a repo, or issue, I'll see if it's possible to fix that. Looks like the issue is that the repository permissions did map over properly because of the
|
Yea same issue here |
@Jackysi Luckily since I don't have a ton of repos I was able to fix mine by following this to recreate the missing For
The above example has different things for Depending on what features were used in Gogs there more manual building of tables would probably be needed (Gitea has some tables like |
Before I migrated to gitea, I used However, I just found something strange in the logs:
What could that be? |
I spent more time trying to fix the database (repo_units) etc than I would resetting my gogs setup. So I've started from scratch (except the config). Got it running pretty fast ^^. I love that Gitea has API, but its lacking some cool features like github has. Specially downloading release by API key / token (sadly my Go knowledge is limited to add this) and few API calls like getting Tags (I fixed that by editing code and changing "tags: false" to true on the Releases route controller. Anyhow. Great project. Love it. Love performance and all about it =) Might contribute when my Go knowledge gets far enough! |
We managed to migrate from gogs 0.11.34 to gitea 1.3.3 There was only one problem with the MariaDB when gogs/gitea complained about a
We installed this patch before we started with the migration and after that, everything was flawless.
=> done 👍 maybe this helps others how want to do the migration too... |
#3516 are also trying to resolve the |
Update documentation. See: #3559 |
Should be resolved by #3559 |
@Schroedingers-Cat I am facing the same issue "Not a git repository ..." Thanks, |
@amit-handa |
Previously, if no branch was explicitly specified for a workflow, it defaulted to the default branch of the repo. This worked fine for workflows that were triggered on push, but it prevented showing badges for workflows that only run on tags, or on schedule - since they do not run on a specific branch. Thus, relax the conditions, and if no branch is specified, just return the latest run of the given workflow. If one is specified, *then* restrict it to said branch. Fixes go-gitea#3487. Signed-off-by: Gergely Nagy <[email protected]> (cherry picked from commit d6915f4)
[x]
): N/ADescription
https://docs.gitea.io/en-us/upgrade-from-gogs/ is not up to date with more recent versions of Gogs. For example it mentions
gogs dump
but it was replaced withgogs backup
in v0.10.8.I'm not even sure it's still possible to migrate from current version of Gogs...
The text was updated successfully, but these errors were encountered: