diff --git a/doc-man/README.md b/doc-man/README.md
index 61a0311..00d3166 100644
--- a/doc-man/README.md
+++ b/doc-man/README.md
@@ -23,4 +23,35 @@ This extension contributes the following settings:
## Filing Issues
-If you find any issues or want to suggest any features, please add them to the GitHub repo [here](https://github.com/Sakshamjain98/Doc_Man)
\ No newline at end of file
+If you find any issues or want to suggest any features, please add them to the GitHub repo [here](https://github.com/Sakshamjain98/Doc_Man)
+
+### This project is open to GSSOC'24
+
+#### Contributions are welcomed!
+
+
+
+### How to contribute
+#### Fork the Repository
+- Go to the GitHub page of the project you want to contribute to and click the "Fork" button in the top right corner. This creates a copy of the repository in your GitHub account.
+#### Clone the Repository
+- Clone the forked repository to your local machine using the git clone command.
+
+ git clone https://github.com/Kunal-agrawall/AI-Jarvis.git
+#### Create a New Branch
+ git checkout -b your-new-branch-name
+#### Make Necessary Changes and Commit Those Changes
+- Add those changes to the branch you just created using the git add command
+
+ git add .
+- Now commit those changes using the git commit command
+
+ git commit -m "Add your message about the commit here"
+#### Push Changes to GitHub
+
+ git push origin your-new-branch-name
+#### Submit a Pull Request (PR)
+- Go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button and carefully review the changes between your branch and the original repository’s branch.
+
+
+