Skip to content

Commit

Permalink
tagging description
Browse files Browse the repository at this point in the history
  • Loading branch information
rmonajemi committed Nov 7, 2023
1 parent 61ea911 commit 1d65e6d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,21 @@ rc$render(out_dir = "docs/<course_yyyymm>")

To include the course in github pages update `docs/index.Rmd` with link to `docs/<course_yyyymm` and knit.

### Tagging course iterations

The material is tagged with each iteration of the course, with tags such as `B1R_202311`. Create the tags locally and push them to master as follows:

```
> git tag -a <course-tag> -m "<short-description>" # create a tag locally
> git push origin <course-tag> # push to remote respo.
```

You'll need to fetch remote tags, unknown to you, using:

```
> git fetch --tags
```


### Visit live pages

Expand Down

0 comments on commit 1d65e6d

Please sign in to comment.