Skip to content

Commit 1b8717f

Browse files
committed
fixing directions
1 parent 33a9ab0 commit 1b8717f

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

handson.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ This step was covered in the [Outline Section](outline.html). In that section yo
1515
1. In the Rstudio Console: `library(usethis)`
1616
1. In the Console: `use_git(message = "first commit for my helo world")`
1717
1. Create a Readme File: `use_readme_md()` (Edit your README. [Example README template](https://gist.github.com/PurpleBooth/109311bb0361f32d87a2))
18-
1. Push your repository to GitHub: `use_github(protocol = "https")`
18+
1. Push your repository to GitHub: `use_github(protocol = "https")` and **restart R**
1919
1. Add a license: [GitHub instructions](https://help.github.com/articles/adding-a-license-to-a-repository/)
2020
1. Pull the GitHub changes to your local workstations via Rstudio's git client
21-
1. Congratulations. You've just created your first GitHub repository. Now you can see your repository -- including the three files you just created.
21+
1. Congratulations. You've just created your first GitHub repository. Now you can see your repository. congratulations. you've created a repo. On your local file-system you should still see the unstaged `README.md`. Both the local and the remote (GitHub) have the `LICENSE.md` file created at GitHub. you've created a repo.
2222

2323
 
2424

handson_branch.Rmd

+1-4
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,11 @@ This document follows set-up from the [previous document](handson.html)
2020
- For a branch name, in the branch text box, type: `version2`
2121
- Click `Create`
2222

23-
Moving back to the text editor in RStudio, create a new markdown document listing 3 favorite movies. Save the file as `movies.md`
24-
25-
- Commit your changes
26-
2723
```{r echo=FALSE, fig.align='center', fig.cap="Create Branch"}
2824
knitr::include_graphics('images/branch_create.png')
2925
```
3026

27+
2. Back to the RStudio text editor, create a new text file listing three favorite movies. Save the file as `movies.md`. **Commit** and **push** your changes
3128
2. Checkout the *master* branch
3229

3330
- Watch the **Files** tab as you switch back to the *master* branch. Where is the `movies.md` file?

handson_pr.Rmd

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ If you intend to submit modifications to some other repository by issuing a Pull
2323

2424
#### Exercise
2525

26-
1. [Source] Clone [this test repository](https://github.com/data-and-visualization/pr_hello-world
26+
1. [Source] **Clone** [this test repository](https://github.com/data-and-visualization/pr_hello-world
2727
)
28-
1. [Source] Have your partner `fork` your repository
29-
1. [Partner] After you forked above, `clone` your forked repository
28+
1. [Source] Have your partner **fork** _your_ repository
29+
1. [Partner] After you forked above, **clone** your forked repository
3030
1. [Partner] Make some changes to your cloned [forked] repository. (e.g. add a file, edit the readme, etc.)
3131
1. [Partner] Using the git commands you've already learned: add, commit, and push the changes
3232

0 commit comments

Comments
 (0)