mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-22 21:44:19 +02:00
Improve README
- Add working merge process specification
This commit is contained in:
parent
fa7101acc2
commit
8ebacb4a28
1 changed files with 9 additions and 3 deletions
12
README.md
12
README.md
|
|
@ -74,13 +74,19 @@ it is merged into `master`, creating a new release, which is tagged and signed.
|
|||
Merging into master is always done by
|
||||
|
||||
```
|
||||
git merge --no-ff development
|
||||
git tag -u keyid version
|
||||
git push origin master
|
||||
git checkout development
|
||||
git pull origin development
|
||||
git checkout master
|
||||
git merge --squash development
|
||||
git tag -u keyid version HEAD
|
||||
git tag -v version
|
||||
git push --tags origin master
|
||||
```
|
||||
|
||||
and a log message roughly describing the features is added in the commit.
|
||||
|
||||
In the past, our git history did not always reflect this scheme.
|
||||
|
||||
### Releases
|
||||
|
||||
Release checklist
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue