Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 829 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 829 Bytes

docs-trelliscope

Tutorial and package reference for trelliscope.

How to contribute

  • Fork and check out this repository
  • Check out the trelliscope repository
  • Change code_path in build.R to point to your checkout of the trelliscope repository
  • Edit the files in docs/*.Rmd
  • Generate the html output by running code in build.R or simply calling
./build

To keep your fork in sync

If others are editing the docs as well and you want to keep your checkout in sync with what is live, do the following (in the repository directory):

One time only:

git remote add upstream https://github.com/delta-rho/docs-trelliscope

Each time you want to sync with the live version of the docs:

git fetch upstream
git merge upstream/gh-pages