-
Fork the Repository: Start by forking the project repository.
-
Clone Locally: Clone the forked repository to your local machine using a git client.
git clone [email protected]:<your-user>/publish-blog-post.git
-
Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b feature/new-feature-x
-
Make Your Changes: Develop and test your changes locally.
-
Commit Your Changes: Commit with a clear message describing your updates.
npm run cz
-
Push: Push the changes to your forked repository.
git push origin feature/new-feature-x
-
Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
-
Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!