<style>
.reveal {
font-size: 28px;
}
</style>
# Before we start
## let's pull the new materials
1) Open Git Bash or terminal (can be in RStudio) of the forked repo.
- if in RStudio, open the relevant project.
- if CLI, go to your working directory.
2) Check the configured remote repo.
- `git remote -v`
----
3) Specify another _upstream_ repo (the GitHub original one).
- `git remote add upstream https://github.com/WHardyUW/RR_classes.git` or
- `git remote add upstream https://github.com/mpalinski/RR_classes.git`
4) Check the newly configured remote repo.
- `git remote -v`
----
5) Fetch the information from the new _upstream_.
- `git fetch upstream/main`
6) Merge the new _upstream_ with your local repo.
- `git checkout main`
- `git merge upstream/main` (Note: this creates a merge commit. You have to __push__ it to have it synced on GitHub)
{"metaMigratedAt":"2023-06-15T22:44:40.732Z","metaMigratedFrom":"YAML","title":"RMarkdown - presentations","breaks":true,"contributors":"[{\"id\":\"1c10bb23-6c4c-4c1b-8586-5f8d56305139\",\"add\":1000,\"del\":45}]"}