From aff97e433e5a0c367dfbb8f284ea200e1876a5da Mon Sep 17 00:00:00 2001 From: teddyCodex <15376476+teddyCodex@users.noreply.github.com> Date: Sat, 5 Oct 2024 16:16:51 +0100 Subject: [PATCH 1/2] Update CONTRIBUTING.md Added a couple of clearer steps to the pull request process. --- .github/CONTRIBUTING.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 180ecf6c..5f240176 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -18,8 +18,17 @@ See our guide on [how to create a great issue](https://code-review.tidyverse.org ### Pull request process -* Fork the package and clone onto your computer. If you haven't done this before, we recommend using `usethis::create_from_github("JRaviLab/MolEvolvR", fork = TRUE)`. - +* Fork the package and clone onto your computer. If you haven't done this before, we recommend using `usethis`. + +* Install and load the `usethis` package with: + ``` + install.packages("usethis") + library(usethis) + ``` +* Clone and fork the MolEvolvR package using: + ``` + usethis::create_from_github("JRaviLab/MolEvolvR", fork = TRUE) + ``` * Install all development dependencies with `devtools::install_dev_deps()`, and then make sure the package passes R CMD check by running `devtools::check()`. If R CMD check doesn't pass cleanly, it's a good idea to ask for help before continuing. * Create a Git branch for your pull request (PR). We recommend using `usethis::pr_init("brief-description-of-change")`. From 3a0376fc7024f6069580ce2059c27510bffb16d0 Mon Sep 17 00:00:00 2001 From: teddyCodex <15376476+teddyCodex@users.noreply.github.com> Date: Sat, 5 Oct 2024 16:29:11 +0100 Subject: [PATCH 2/2] Update CONTRIBUTING.md --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 5f240176..9465c683 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -23,7 +23,7 @@ See our guide on [how to create a great issue](https://code-review.tidyverse.org * Install and load the `usethis` package with: ``` install.packages("usethis") - library(usethis) + library("usethis") ``` * Clone and fork the MolEvolvR package using: ```