From aa671c89f217edfa684a164eec672008255934f1 Mon Sep 17 00:00:00 2001 From: Yelsin Sepulveda Date: Fri, 16 Jan 2026 11:15:52 -0500 Subject: [PATCH 1/2] reverted changes, besides missing cmd and typo Signed-off-by: Yelsin Sepulveda --- CONTRIBUTING.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8b19ce21305d..7bef36033277 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,10 +62,12 @@ sudo apt install libxcb1-dev # libxcb1-dev is the development package for t ### Rust -First, activate the hermit environment and compile goose: +First let's compile goose and try it out +Since goose requires Hermit for managing dependencies, let's activate hermit. ``` -source bin/activate-hermit +cd goose +source ./bin/activate-hermit cargo build ``` @@ -231,7 +233,7 @@ This process will help you keep your branch aligned with the ongoing changes in ### Before Submitting a Pull Request -Before you submit a pull request, please ensure your fork is synchronized as described above. This check ensures your changes are compatible with the latest in the main repository and streamlines the review process. +Before submitting a pull request, please ensure your fork is synchronized as described above. This check ensures your changes are compatible with the latest in the main repository and streamlines the review process. If you encounter any issues during this process or have any questions, please reach out by opening an issue [here][issues], and we'll be happy to help. @@ -289,10 +291,12 @@ This project follows the [Conventional Commits](https://www.conventionalcommits. ## Developer Certificate of Origin -This project requires a [Developer Certificate of Origin](https://en.wikipedia.org/wiki/Developer_Certificate_of_Origin) sign-offs on all commits. This is a statement indicating that you are allowed to make the contribution and that the project has the right to distribute it under its license. When you are ready to commit, use the `--signoff` flag to attach the sign-off to your commit. +This project requires a [Developer Certificate of Origin](https://en.wikipedia.org/wiki/Developer_Certificate_of_Origin) sign-offs on all commits. This is a statement indicating that you are allowed to make the contribution and that the project has the right to distribute it under its license. When you are ready to commit, use the `--signoff` or `-s` flag to attach the sign-off to your commit. ``` git commit --signoff ... +# OR +git commit -s ... ``` ## Other Ways to Contribute From bfa398510142f087e86e412f4f164fd1fc6579b5 Mon Sep 17 00:00:00 2001 From: Yelsin Sepulveda Date: Sat, 17 Jan 2026 01:35:55 -0500 Subject: [PATCH 2/2] fix submit r sentence Signed-off-by: Yelsin Sepulveda --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7bef36033277..238698953380 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -233,7 +233,7 @@ This process will help you keep your branch aligned with the ongoing changes in ### Before Submitting a Pull Request -Before submitting a pull request, please ensure your fork is synchronized as described above. This check ensures your changes are compatible with the latest in the main repository and streamlines the review process. +Before you submit a pull request, please ensure your fork is synchronized as described above. This check ensures your changes are compatible with the latest in the main repository and streamlines the review process. If you encounter any issues during this process or have any questions, please reach out by opening an issue [here][issues], and we'll be happy to help.