From d32a9447660bfd72f9a4e726f43434840f72de19 Mon Sep 17 00:00:00 2001 From: Acuspeedster Date: Sat, 31 May 2025 00:37:31 +0530 Subject: [PATCH 1/2] Add a newline at the end of Signed-off-by: Acuspeedster --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 634ffe4..2be2aff 100644 --- a/README.md +++ b/README.md @@ -437,15 +437,24 @@ Process repeats until successful or max attempts reached --- ## 🤝 Contributing -Contributions are welcome! Feel free to submit a Pull Request. +Contributions are welcome! This project uses the Developer Certificate of Origin (DCO) to certify that contributors have the right to submit their code. Follow these steps: Fork the repository Create your feature branch (git checkout -b feature/amazing-feature) -Commit your changes (git commit -m 'Add some amazing feature') +Make your changes +Commit your changes with a sign-off (git commit -s -m 'Add some amazing feature') Push to the branch (git push origin feature/amazing-feature) Open a Pull Request +The -s flag will automatically add a signed-off-by line to your commit message: +``` +Signed-off-by: Your Name +``` + +This certifies that you wrote or have the right to submit the code you're contributing according to the Developer Certificate of Origin. + --- ## 📜 License Licensed under [GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html). + From 722310c98a43704bbe0ecdf95bbdd5f49c79081f Mon Sep 17 00:00:00 2001 From: Acuspeedster Date: Sat, 31 May 2025 00:45:27 +0530 Subject: [PATCH 2/2] Improved README.md Signed-off-by: Acuspeedster --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2be2aff..478a1de 100644 --- a/README.md +++ b/README.md @@ -451,7 +451,7 @@ The -s flag will automatically add a signed-off-by line to your commit message: Signed-off-by: Your Name ``` -This certifies that you wrote or have the right to submit the code you're contributing according to the Developer Certificate of Origin. +This certifies that you wrote or have the right to submit the code you're contributing according to the Developer Certificate of Origin. ---