2023-10-27 08:33:14 -04:00
|
|
|
# build
|
|
|
|
|
|
|
|
```
|
2023-10-27 05:50:39 -04:00
|
|
|
TAGS="sqlite" make build generate-swagger
|
2023-10-27 08:33:14 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
# launch local
|
|
|
|
|
|
|
|
```
|
2023-10-27 05:50:39 -04:00
|
|
|
./gitea admin user create --name me --password me --email "buero@meissa.de"
|
|
|
|
./gitea admin user generate-access-token -u me -t token --scopes write:activitypub,write:repository,write:user
|
2023-10-27 08:33:14 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
# sync base branch
|
|
|
|
|
|
|
|
```
|
2023-11-06 03:27:41 -05:00
|
|
|
# setup a second repo for excosy implementation
|
|
|
|
git clone https://git.exozy.me/a/gitea.git exosy
|
|
|
|
|
2023-11-06 03:12:09 -05:00
|
|
|
# add remotes
|
|
|
|
git remote add forgejo git@codeberg.org:forgejo/forgejo.git
|
|
|
|
|
|
|
|
# rebase on top of forgejo/forge-development
|
2023-10-27 08:33:14 -04:00
|
|
|
git checkout forgejo-development
|
2023-11-03 12:05:48 -04:00
|
|
|
git rebase --onto forgejo/forgejo-development
|
2023-10-27 08:33:14 -04:00
|
|
|
git push --force
|
|
|
|
|
|
|
|
git checkout forgejo-federated-star
|
|
|
|
git rebase forgejo-development
|
|
|
|
git push --force
|
2023-11-03 12:58:47 -04:00
|
|
|
|
2023-11-06 03:12:09 -05:00
|
|
|
# continue local development after rebase & force-push has happened
|
2023-11-03 12:58:47 -04:00
|
|
|
git reset --hard origin/forgejo-federated-star
|
2023-11-03 12:45:53 -04:00
|
|
|
```
|