You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: episodes/07-github.md
+15-10Lines changed: 15 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ exercises: 0
23
23
24
24
When using `usethis::git_sitrep()`, check if there is no `✖ ...` line in the output with an error message.
25
25
26
-
If you an error message like `✖ Token lacks ...` or `✖ Can't retrieve registered email`, [follow the steps in episode 2 to solve it](02-setup#set-up-your-github-token).
26
+
If you an error message like `✖ Token lacks ...` or `✖ Can't retrieve registered email`, [follow the steps in episode 2 to solve it](02-setup.md#set-up-your-github-token).
You can use `{usethis}` to (i) create a remote repository, (ii) connect the local and the remote with one function, and (iii) push your local changes to a remote.
430
+
You can use `usethis::use_github()` to _create_a remote repository, _connect_the local and the remote, and _push_ your local changes to a remote.
429
431
430
432
::::::::::::::::::::::::::::::::: challenge
431
433
432
-
Along with tracking information about cases (the project we have already created),
434
+
For the Outbreak response, along with tracking information about cases (the project we have already created),
433
435
Dracula would also like to track information about interventions.
434
436
435
437
Create new local repository for `interventions` and connect it with a remote repository:
436
438
437
-
- First, if you are in Rstudio, close you Project from `File` > `Close Project`.
439
+
- First, if you are in Rstudio, close your R Project from `File` > `Close Project`.
438
440
-__In the Console__, run:
439
441
440
442
```r
441
443
# create a new R project in a new directory
442
444
usethis::create_project(path="interventions")
443
445
444
-
# make the interventions directory a Git repository
446
+
# make the interventions directory a Git local repository
0 commit comments