Skip to content

Commit

Permalink
fix checklist concept figures paths
Browse files Browse the repository at this point in the history
  • Loading branch information
avallecam committed Nov 12, 2023
1 parent be8af63 commit 9c6a009
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion episodes/05-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ $ git log --patch HEAD~9 *.Rmd

::::::::::::::::: checklist

[Use `git diff` to compare changes since last commit or between commits. Use `git checkout` to undo changes by restoring the staging area (committed changes) or the local repository (last commit)](cut-git-verb_map-08.png)
[Use `git diff` to compare changes since last commit or between commits. Use `git checkout` to undo changes by restoring the staging area (committed changes) or the local repository (last commit)](fig/cut-git-verb_map-08.png)

:::::::::::::::::::::::::::

Expand Down
8 changes: 4 additions & 4 deletions episodes/07-github.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ create a new repository called `cases`:

![](fig/github-create-repo-01.png){alt='Creating a Repository on GitHub (Step 1)'}

Name your repository "cases" and then click "Create Repository".
Name your repository `cases` and then click "Create Repository".

Note: Since this repository will be connected to a local repository, it needs to be empty. Leave
"Initialize this repository with a README" unchecked, and keep "None" as options for both "Add
Expand Down Expand Up @@ -100,7 +100,7 @@ Click on the 'SSH' link to change the [protocol](../learners/reference.md#protoc

## HTTPS vs. SSH

The current recommendation is HTTPS because it is the easiest to set up on the widest range of networks and platforms, and by users who are new to all this. HTTPS is less likely to be blocked by a firewall. ([StakOverflow, 2012](https://stackoverflow.com/a/11041782/6702544))
The current recommendation is HTTPS because it is the easiest to set up on the widest range of networks and platforms, and by users who are new to all this. HTTPS is less likely to be blocked by a firewall. ([StackOverflow, 2012](https://stackoverflow.com/a/11041782/6702544))

<!--
We use SSH here because, while it requires some additional configuration, it is a
Expand Down Expand Up @@ -437,7 +437,7 @@ Dracula would also like to track information about interventions.
Create new local repository for `interventions` and connect it with a remote repository:

- First, if you are in Rstudio, close your R Project from `File` > `Close Project`.
- __In the Console__, run:
- In the Console, run:

```r
# create a new R project in a new directory
Expand Down Expand Up @@ -635,7 +635,7 @@ create mode 100644 README.md

::::::::::::::::: checklist

[Use `git pull` to download content from a remote repository to the workspace and update the local repository to match that content. Use `git push` to upload local repository content to a remote repository.](cut-git-verb_map-09.png)
[Use `git pull` to download content from a remote repository to the workspace and update the local repository to match that content. Use `git push` to upload local repository content to a remote repository.](fig/cut-git-verb_map-09.png)

:::::::::::::::::::::::::::

Expand Down
2 changes: 1 addition & 1 deletion episodes/08-collab.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ What are some of the benefits of using version control, Git and GitHub?

::::::::::::::::: checklist

[Use `git clone` to obtain a development copy of a remote repository. Like `git init`, cloning is generally a one-time operation. Use `git pull` to update the local repository to match the content in the remote repository.](cut-git-verb_map-10.png)
[Use `git clone` to obtain a development copy of a remote repository. Like `git init`, cloning is generally a one-time operation. Use `git pull` to update the local repository to match the content in the remote repository.](fig/cut-git-verb_map-10.png)

:::::::::::::::::::::::::::

Expand Down

0 comments on commit 9c6a009

Please sign in to comment.