📝 update CONTRIBUTING

This commit is contained in:
anyreso 2024-12-08 22:28:17 -05:00
parent 3319c1d00e
commit 4a0143a065

View file

@ -20,7 +20,7 @@ The `develop` branch contains the most recent and advanced codebase, as it serve
Periodically, changes from `develop` are merged into the `main` branch to package releases. Periodically, changes from `develop` are merged into the `main` branch to package releases.
This practice ensures that everyone remains updated on ongoing tasks, fostering transparency and encouraging collaboration. This practice keeps everyone informed about ongoing tasks, promotes transparency, fosters collaboration, and safeguards newcomers from oversights in the review process.
> Learn how to [create a merge request when you work in a fork][#create_merge_requests_from_fork]. > Learn how to [create a merge request when you work in a fork][#create_merge_requests_from_fork].
@ -100,13 +100,13 @@ This naming convention helps to categorize branches and makes it easier to ident
1. Create a new branch for your changes: 1. Create a new branch for your changes:
```shell ```shell
git checkout -b fix/my-branch git checkout -b feat/my-branch
``` ```
2. Make your changes, stage then and commit: 2. Make your changes, stage then and commit:
```shell ```shell
git commit -am "📝 update CONTRIBUTING.md" git commit -am "✨ add magic"
``` ```
3. Push your changes to the repository: 3. Push your changes to the repository: