1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-15 20:36:55 +00:00

update related to rebase v3

Peter Bieringer 2025-01-09 20:11:03 +01:00
parent 8be3aa2508
commit 178a15b6d5

@ -79,19 +79,19 @@ tox
Commit changes Commit changes
``` ```bash
git commit -a git commit -a
``` ```
Create release tag Create release tag
``` ```bash
git tag v$VERSION git tag v$VERSION
``` ```
Push Push
``` ```bash
git push git push
git push --tags git push --tags
``` ```
@ -113,6 +113,13 @@ After RPMs are successfully built, mark it as latest release
* Rebase major version branch (currently "v3") with "master" * Rebase major version branch (currently "v3") with "master"
```bash
git checkout v3
git rebase master
git push
git checkout master
```
## Turn back master to devel ## Turn back master to devel
| File | Action | | File | Action |
@ -123,12 +130,12 @@ After RPMs are successfully built, mark it as latest release
Commit changes Commit changes
``` ```bash
git commit -a git commit -a
``` ```
Push Push
``` ```bash
git push git push
``` ```