From c5c4283fad8e9c947bf946858135dc0d7db6cc62 Mon Sep 17 00:00:00 2001 From: Pradnya <116059908+PradnyaGaitonde@users.noreply.github.com> Date: Mon, 13 May 2024 14:42:55 +0530 Subject: [PATCH] Update README.md This pull request adds detailed instructions for contributors on how to contribute to the RAPIDOC-HEALTHCARE-WEBSITE repository using GitHub Desktop. The instructions cover the process of forking the repository, cloning it to the local machine, making changes, committing them, pushing them to the forked repository, and creating a pull request. The guide aims to make it easier for new contributors to understand and follow the contribution process using GitHub Desktop. --- README.md | 71 +++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 56 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 925f91b8..aa5c47a4 100644 --- a/README.md +++ b/README.md @@ -16,28 +16,69 @@ It is an online platform which enables you to get information about your nearest ### Setup and Installation -1. **Fork and Clone the Repository** - To get started with contributing to our project, fork the repo and then clone it to your local machine: +To contribute to the RAPIDOC-HEALTHCARE-WEBSITE repository, follow these steps: +1. **Fork the Repository** + Click on the "Fork" button on the repository's GitHub page to create a copy of the repository in your GitHub account. + +2. **Clone the repository** + Clone the forked repository to your local machine using the following command in your terminal: + ```bash + git clone https://github.com//RAPIDOC-HEALTHCARE-WEBSITE + ``` +3. **Add a remote upstream** + ```bash + git remote add upstream https://github.com/original-owner-username/RAPIDOC-HEALTHCARE-WEBSITE + ``` +4. **Create a new branch** + Create a new branch for your changes. Run the following command in your terminal: + ```bash + git checkout -b + ``` + +5. **Make the desired changes** + Make the desired changes to the source code. + +6. **Add your changes** + Add your changes to the staging area. Run the following command in your terminal: ```bash - git clone https://github.com/Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-.git + git add ... ``` + +7. **Commit your changes** + Commit your changes with a meaningful commit message. Run the following command in your terminal: + ```bash + git commit -m "" + ``` + +8. **Push your changes** + Push your changes to your forked repository. Run the following command in your terminal: + ```bash + git push origin + ``` + +9. **Create a Pull Request:-** + Go to the GitHub page of your forked repository. You should see a prompt to create a pull request (PR). Click on it, compare the changes, and create the PR. - ![Screenshot 2024-05-11 130255](https://github.com/Arpcoder/RAPIDOC-HEALTHCARE-WEBSITE-/assets/100352419/a72f7881-57e5-405b-ac47-9deef6146e3e) +To contribute to the RAPIDOC-HEALTHCARE-WEBSITE repository using GitHub Desktop, follow these steps: +1. **Clone the repository** + Open GitHub Desktop and log in to your GitHub account. Go to the "File" menu and select "Clone Repository." Select the RAPIDOC-HEALTHCARE-WEBSITE repository from the list and choose a local path to clone the repository. +2. **Switch to the correct branch** + Once the repository is cloned, make sure you are on the correct branch where you want to make your changes. You can switch branches using the "Branch" menu in GitHub Desktop. -2. **Make Your Changes:-** - Make the necessary modifications or additions to the project files.Add new features to the project. +3. **Make and commit changes** + Make the desired changes to the code in your local repository. After making changes, stage them by clicking the "+" button next to the changed files. Enter a commit message describing your changes and click the "Commit" button. -3. **Commit and Push:-** - Once you've made your changes, commit them and push to your fork: - ```bash - git add . - git commit -m "Describe your changes here" - git push - ``` +4. **Push changes to GitHub** + After committing your changes, push them to your fork of the repository on GitHub. Click the "Push origin" button in GitHub Desktop to push your changes. + +5. **Create a pull request** + Go to your fork of the RAPIDOC-HEALTHCARE-WEBSITE repository on the GitHub website. You should see a notification that your branch is ahead of the original repository. Click on the "Compare & pull request" button to create a pull request for your changes. + +6. **Review and submit the pull request** + On the pull request page, review your changes and add a title and description for your pull request. Once you're satisfied with your changes, click the "Create pull request" button to submit your pull request. -4. **Create a Pull Request:-** - Navigate back to the original repository and open a pull request from your forked repository. +If you find this project helpful, please consider giving it a star! ⭐️ ### Contributing