Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion doc-man/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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 <br>

#### Contributions are welcomed! <br>

![image](https://github.com/StutiRajput07/Doc_Man/assets/110724092/eff46dcc-89ba-4789-b974-10b0c372b61c)

### 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.