You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 18, 2025. It is now read-only.
3.**Create a New Branch**: Always work on a new branch, giving it a descriptive name.
190
+
195
191
```sh
196
192
git checkout -b new-feature-x
197
193
```
194
+
198
195
4.**Make Your Changes**: Develop and test your changes locally.
199
196
5.**Commit Your Changes**: Commit with a clear message describing your updates.
197
+
200
198
```sh
201
199
git commit -m 'Implemented new feature x.'
202
200
```
201
+
203
202
6.**Push to github**: Push the changes to your forked repository.
203
+
204
204
```sh
205
205
git push origin new-feature-x
206
206
```
207
+
207
208
7.**Submit a Pull Request**: Create a PR against the original project repository. Clearly describe the changes and their motivations.
208
209
8.**Review**: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
210
+
209
211
</details>
210
212
211
213
<detailsclosed>
@@ -222,11 +224,10 @@ Contributions are welcome! Here are several ways you can contribute:
222
224
<br/>
223
225
<br/>
224
226
225
-
## License
227
+
## License
226
228
227
229
This project is protected under the [MIT](https://github.com/pulsecron/nestjs-pulse?tab=MIT-1-ov-file#readme) License. For more details, refer to the [LICENSE](https://github.com/pulsecron/nestjs-pulse?tab=MIT-1-ov-file#readme) file.
0 commit comments