Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.14 KB

README.md

File metadata and controls

57 lines (37 loc) · 1.14 KB

HCDS Topics

to contribute to HCDS Topics do the next steps

Fork the repo

  1. Click the Fork button at the top right of this page.
  2. Clone your forked repository to your local machine.
git clone https://github.com/your-username/your-repo.git

Create a new branch

git checkout -b hcds-your-github-username

Make your changes

  1. Add new folders or files as needed.
  2. Commit your changes.
git add ./
git commit -m "Add new topics"

Push Your Changes

  1. Push your changes to your forked repository.
git push origin hcds-your-github-username

Create a Pull Request

  1. Go to the original repository on GitHub.
  2. Click on Pull Requests and then New Pull Request.
  3. Select your branch from the compare dropdown.
  4. Click Create Pull Request.

Review Process

  1. Your pull request will be reviewed
  2. Make any requested changes.
  3. Once approved, your pull request will be merged.

Notes

  • Do not delete existing files or folders unless explicitly discussed and approved.
  • Ensure your changes do not break the build or existing functionality.

Thank you for your contribution!