Thank you for your interest in contributing to this project!
We use the GitHub Flow approach for all contributions. Please follow these steps:
-
Fork the Repository
Click the "Fork" button at the top right of the repository page to create your own copy. -
Clone Your Fork
Clone your forked repository to your local machine:git clone -
Create a Branch
Make sure you are branching fromdevel. Create a new branch for your feature or fix:git checkout devel git checkout -b your-branch-name -
Make Changes
Make your changes locally. Commit early and often:git add . git commit -m "Describe your changes" -
Push to GitHub
Push your branch to your forked repository:git push origin your-branch-name -
Open a Pull Request
Go to the original repository and open a Pull Request from your branch. Describe your changes and reference any related issues. -
Review and Merge
Your Pull Request will be reviewed. Please respond to feedback and make any requested changes. Once approved, it will be merged.
- Always branch from
devel. - Keep your branch up to date with
develby merging or rebasing as needed. - Write clear commit messages and Pull Request descriptions.
Thank you for helping improve SAMS-Harness!