🔧 change master to main

This commit is contained in:
Tw93
2024-12-17 19:15:01 +08:00
parent 97a68ca0c3
commit 47bd8e5105
8 changed files with 10 additions and 10 deletions

View File

@@ -6,15 +6,15 @@
```mermaid
graph LR
b_dev(dev) --> b_master(master);
b_dev(dev) --> b_main(main);
contributions([Develop / Pull requests]) -.-> b_dev;
```
- `dev` branch
- `dev` is the developing branch.
- It's **RECOMMENDED** to commit feature PR to `dev`.
- `master` branch
- `master` is the release branch, we will make tag and publish version on this branch.
- `main` branch
- `main` is the release branch, we will make tag and publish version on this branch.
- If it is a document modification, it can be submitted to this branch.
## More