From 9cf8376e3bb8a4c7a6889b8bc0682fc5efd80888 Mon Sep 17 00:00:00 2001 From: khuyentran1401 Date: Fri, 30 May 2025 15:53:33 -0500 Subject: [PATCH] update contribution --- contribution.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/contribution.md b/contribution.md index c495b916..828a0fc8 100644 --- a/contribution.md +++ b/contribution.md @@ -134,7 +134,31 @@ The exported HTML files will be automatically deployed to GitHub Pages through t ### Pull Request Process 1. Fork the repository + ```bash + # Click the "Fork" button on the repository's GitHub page + # Then clone your forked repository + git clone https://github.com/YOUR-USERNAME/REPOSITORY-NAME.git + cd REPOSITORY-NAME + ``` + 2. Create a new branch for your feature + ```bash + git checkout -b feature/your-feature-name + ``` + 3. Make your changes -4. Submit a pull request with a clear description of changes + ```bash + # Make your code changes + # Add your changes to staging + git add . + # Commit your changes + git commit -m "Description of your changes" + ``` + +4. Submit a pull request + ```bash + # Push your changes to your fork + git push origin feature/your-feature-name + # Then go to GitHub and click "Create Pull Request" + ```