Go to file
2024-12-29 12:05:24 +06:00
.vscode Automated hospital date format and SHR dashboard information update 2024-12-18 17:58:11 +06:00
Biometric.md Update Biometric.md 2024-12-29 12:05:24 +06:00
CallCenter.md Added empty files 2024-12-12 17:10:08 +06:00
complaints.md Added Complaint and Suggestion System 2024-12-12 16:50:18 +06:00
Controlroom.md Added empty files 2024-12-12 17:10:08 +06:00
CRVS.md Added empty files 2024-12-12 17:10:08 +06:00
dhis2.md First Commit 2024-12-10 23:22:47 +06:00
eappointment.md First Commit 2024-12-10 23:22:47 +06:00
HealthCarefinancing.md Added HealtcareFinancing.md 2024-12-15 23:17:13 +06:00
HID.md First Commit 2024-12-10 23:22:47 +06:00
HRIS.md Updated HRIS.md 2024-12-23 10:35:22 +06:00
MIS.md Updated email address in contact info 2024-12-15 12:49:16 +06:00
openmrs.md Updated openmrs 2024-12-19 00:08:25 +06:00
opensrp.md Added empty files 2024-12-12 23:33:50 +06:00
PrivacyPolicySHR.md Added Privacy Policy 2024-12-18 23:48:31 +06:00
PrivateHospitalRegistration.md Private hospital Registration document updates 1 2024-12-26 11:42:41 +06:00
README.md Updated README.md 2024-12-12 00:18:14 +06:00
SHR.md First Commit 2024-12-10 23:22:47 +06:00
Telemedicine.md Updated telemedicine information 2024-12-15 13:57:02 +06:00
userGuide.md Addedd user guide 2024-12-13 22:06:46 +06:00
vaxEPI.md Added empty files 2024-12-12 20:13:13 +06:00

Contributor Guidelines: Creating Pull Requests for Updating Documents

Welcome, collaborators! This guide outlines the steps for creating a pull request (PR) to update documents in the chatbot-knowledge repository. Please follow these instructions carefully to ensure a smooth contribution process.


Step 1: Fork the Repository

  1. Navigate to the repository at chatbot-knowledge.
  2. Click the Fork button in the top-right corner to create your own copy of the repository.

Step 2: Clone the Repository

  1. Copy the URL of your forked repository.
  2. Run the following command in your terminal to clone it to your local machine:
    git clone <your-fork-url>
    
  3. Navigate to the project directory:
    cd chatbot-knowledge
    

Step 3: Create a New Branch

  1. Always create a new branch for your updates to keep the main branch clean:
    git checkout -b update-documents
    
    Replace update-documents with a branch name relevant to your changes.

Step 4: Make Your Changes

  1. Open the repository in your preferred code editor.
  2. Update the document files with your changes.
  3. Save the files.
  4. You may use online platform to convert Microsoft Word document (if you have done your editing in MS Word) to a markup README file. To do this visit https://word2md.com.

Step 5: Commit Your Changes

  1. Stage your changes:
    git add .
    
  2. Commit your changes with a clear and concise message:
    git commit -m "Update SHR documentation with new API integration details"
    
    Replace Update SHR documentation with new API integration details with your commit name.

Step 6: Push Your Changes

  1. Push your changes to your forked repository:
    git push origin <branch-name>
    
    Replace <branch-name> with the name of your branch.

Step 7: Create a Pull Request

  1. Go to your forked repository on https://git.dghs.gov.bd/riaz.somc/chatbot-knowledge.git.
  2. Click on the Compare & pull request button.
  3. Ensure the base repository is set to the original repository (https://git.dghs.gov.bd/riaz.somc/chatbot-knowledge.git) and the base branch is main.
  4. Add a descriptive title for your pull request, e.g., Update: Added API details in SHR documentation.
  5. Write a detailed description of the changes you made.
  6. Click Create pull request.

Step 8: Collaborate on the PR

  1. Monitor your PR for any comments or feedback from the repository maintainers.
  2. Make any requested changes by editing the files locally and pushing the updates:
    git add .
    git commit -m "Address feedback on PR"
    git push origin <branch-name>
    

Step 9: Merge the Pull Request

  1. Once the maintainers approve your PR, they will merge it into the main branch.
  2. Alternatively, if you have merge permissions, click Merge pull request and confirm.

Additional Notes

  • Ensure your changes adhere to the repository's contribution guidelines.
  • Always pull the latest changes from the main branch before starting a new update:
    git pull upstream main
    
  • Use clear, professional language in your commit messages and PR descriptions.

Thank you for contributing to the chatbot-knowledge repository! Your efforts make this project better for everyone. 🎉