diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 180ecf6c..9465c683 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")`.