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
+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 + ++ If you'd like to add more problems, improve the site, or know more about + the project, check out the GitHub repository: +
+ DSAmplify + ++ 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. +
+ ++ 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
+
+ + 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.
+
+ Make the necessary changes to the codebase, whether it's fixing a bug, + adding a feature, or improving documentation. +
+ +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"
+
+ Push your changes to your forked repository on GitHub using:
+git push origin feature-name
+
+ + 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. +
+ ++ 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! +