mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
add some rought branch sync description
This commit is contained in:
parent
fe2a3d86d4
commit
0572725204
1 changed files with 23 additions and 0 deletions
|
@ -1,3 +1,26 @@
|
|||
# build
|
||||
|
||||
```
|
||||
TAGS="sqlite" make build generate-swagger
|
||||
```
|
||||
|
||||
# launch local
|
||||
|
||||
```
|
||||
./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
|
||||
```
|
||||
|
||||
# sync base branch
|
||||
|
||||
```
|
||||
git remote add git@codeberg.org:forgejo/forgejo.git
|
||||
|
||||
git checkout forgejo-development
|
||||
git rebase forgejo/forgejo-development
|
||||
git push --force
|
||||
|
||||
git checkout forgejo-federated-star
|
||||
git rebase forgejo-development
|
||||
git push --force
|
||||
```
|
Loading…
Reference in a new issue