Skip to content

Commit

Permalink
Make 'initialize_text' variable also
Browse files Browse the repository at this point in the history
  • Loading branch information
jennybc committed Oct 23, 2021
1 parent 9642b2b commit a76cb52
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion child-create-a-github-repo.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ How to fill this in:
* Repository name: <<<repository_name_text>>>
* Description: <<<description_text>>>
* Public.
* Initialize this repository with: Add a README file.
* <<<initialize_text>>>

Click the big green button that says "Create repository".

Expand Down
3 changes: 2 additions & 1 deletion connect-git-github.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ dat <- list(
`myrepo` or whatever you wish (we'll delete this soon)."),
description_text = glue::glue("
\"Repository for testing my Git/GitHub setup\" or similar. It's nice to \\
have something here, so you'll see it appear in the README.")
have something here, so you'll see it appear in the README."),
initialize_text = "Initialize this repository with: Add a README file."
)
insert <- glue::glue_data(
dat,
Expand Down
3 changes: 2 additions & 1 deletion connect-rstudio-git-github.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ dat <- list(
`myrepo` or whatever you wish (we'll delete this soon)."),
description_text = glue::glue("
\"Repository for testing my Git/GitHub setup\" or similar. It's nice to \\
have something here, so you'll see it appear in the README.")
have something here, so you'll see it appear in the README."),
initialize_text = "Initialize this repository with: Add a README file."
)
insert <- glue::glue_data(
dat,
Expand Down
3 changes: 2 additions & 1 deletion usage-existing-project-github-first.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ dat <- list(
whitespace. Letters, digits, `-`, `.`, or `_` are allowed."),
description_text = glue::glue("
\"Analysis of the stuff\" or any short description of the project. Write \\
this for humans.")
this for humans."),
initialize_text = "Initialize this repository with: Add a README file."
)
insert <- glue::glue_data(
dat,
Expand Down
3 changes: 2 additions & 1 deletion usage-new-project-github-first.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ dat <- list(
whitespace. Letters, digits, `-`, `.`, or `_` are allowed."),
description_text = glue::glue("
\"Analysis of the stuff\" or any short description of the project. Write \\
this for humans.")
this for humans."),
initialize_text = "Initialize this repository with: Add a README file."
)
insert <- glue::glue_data(
dat,
Expand Down

0 comments on commit a76cb52

Please sign in to comment.