From 2558da131adf3407045335a00f794fa81ae8b596 Mon Sep 17 00:00:00 2001 From: Tanmay Bhosale <2021.tanmay.bhosale@ves.ac.in> Date: Tue, 8 Oct 2024 04:59:49 +0530 Subject: [PATCH] a better about page --- about.html | 218 +++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 195 insertions(+), 23 deletions(-) diff --git a/about.html b/about.html index 6fcd44c..bc0cb08 100644 --- a/about.html +++ b/about.html @@ -1,28 +1,200 @@ - - - - DSAmplify - - - - + + + + DSAmplify - Contribute + + + +
-
-

DSAmplify

-
- +
+

DSAmplify

+
+
-
-

Want to Contribute?

-

If you'd like to add more problems or improve the site or to know more about the project, check out the GitHub repository:

- DSAmplify + +
+

Want to Contribute?

+

+ If you'd like to add more problems, improve the site, or know more about + the project, check out the GitHub repository: +

+ DSAmplify + +

Step-by-Step Contribution Guide

+ +

1. Fork the Repository

+

+ Forking creates a personal copy of the repository under your GitHub + account. To fork the repository, go to the + DSAmplify GitHub repository + and click the "Fork" button in the top right corner. +

+ +

2. Clone the Forked Repository

+

+ Once you have forked the repository, clone your fork to your local + machine. Use the following command: +

+ git clone https://github.com/d-coder111 /DSAmplify.git + +

3. Create a Branch

+

+ It's best practice to create a new branch for each feature or bug fix + you work on. Run the following command to create a new branch: +

+ git checkout -b feature-name +

+ Replace feature-name with a meaningful name for the feature + or bug you're working on. +

+ +

4. Make Your Changes

+

+ Make the necessary changes to the codebase, whether it's fixing a bug, + adding a feature, or improving documentation. +

+ +

5. Stage and Commit Your Changes

+

After making your changes, stage the files you've modified:

+ git add . +

Then commit your changes with a meaningful message:

+ git commit -m "Detailed description of the changes" + +

6. Push Your Changes to GitHub

+

Push your changes to your forked repository on GitHub using:

+ git push origin feature-name + +

7. Create a Pull Request

+

+ After pushing your changes, go to your forked repository on GitHub, and + you'll see an option to create a pull request. Provide a detailed + description of the changes you made and submit the pull request for + review. +

+ +

8. Collaborate and Improve

+

+ The project maintainers may review your pull request and ask for further + changes. Collaborate with them, make necessary updates, and once + approved, your contribution will be merged into the main project. +

+ +

+ That's it! You've successfully contributed to DSAmplify. Keep + contributing and learning! +

- - \ No newline at end of file + +