Skip to content

Commit

Permalink
Switch naming of block/section for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jansim committed Jul 17, 2024
1 parent 51c0631 commit fa60484
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions 1.0-intro.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ Quick Round of Introductions
4. Open `git-exercise` in Visual Studio Code
- Create a new file `test.txt` and write in it <br> `Hello World!`

## *End of Block* 🎉 {background-color="black"}
## *End of Section* 🎉 {background-color="black"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Block]](./1.1-what_is_git.html)
[[⏩️ Next Section]](./1.1-what_is_git.html)
4 changes: 2 additions & 2 deletions 1.1-what_is_git.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,12 @@ Alternatively, we can download a repository from the internet using the `clone`
git clone https://github.com/open-teaching/git-murder-mystery.git
```

## *End of Block* 🎉 {background-color="black"}
## *End of Section* 🎉 {background-color="black"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Block]](./1.2-tracking_changes.html)
[[⏩️ Next Section]](./1.2-tracking_changes.html)
4 changes: 2 additions & 2 deletions 1.2-tracking_changes.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -275,12 +275,12 @@ I'm aware this was a lot to take in.
- See all stashes via `git stash list`
- Apply your stahes via `git stash apply`

## *End of Section* 🎉 {background-color="black" background-opacity="0.4" background-image="images/backgrounds/dolomites.jpg"}
## *End of Block* 🎉 {background-color="black" background-opacity="0.4" background-image="images/backgrounds/dolomites.jpg"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Section]](./2.1-gitignore.html)
[[⏩️ Next Block]](./2.1-gitignore.html)
4 changes: 2 additions & 2 deletions 2.1-gitignore.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ The .gitignore uses the same kind of pattern matching as `git add` (or other git
4. Create a new .gitignore file to ignore only this cheatsheet
5. Commit the .gitignore file

## *End of Block* 🎉 {background-color="black"}
## *End of Section* 🎉 {background-color="black"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Block]](./2.2-history.html)
[[⏩️ Next Section]](./2.2-history.html)
4 changes: 2 additions & 2 deletions 2.2-history.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ git checkout 795780d
- Use `git checkout` to travel through time
2. Compare the different suspects over time to determine who was present at all three scenes.

## *End of Block* 🎉 {background-color="black"}
## *End of Section* 🎉 {background-color="black"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Block]](./2.3-branches_merging.html)
[[⏩️ Next Section]](./2.3-branches_merging.html)
4 changes: 2 additions & 2 deletions 2.3-branches_merging.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -237,12 +237,12 @@ Rebasing

::::

## *End of Section* 🎉 {background-color="black" background-opacity="0.4" background-image="images/backgrounds/dolomites.jpg"}
## *End of Block* 🎉 {background-color="black" background-opacity="0.4" background-image="images/backgrounds/dolomites.jpg"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Section]](./3.1-what_is_github.html)
[[⏩️ Next Block]](./3.1-what_is_github.html)
4 changes: 2 additions & 2 deletions 3.1-what_is_github.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ git remote -h
```
:::

## *End of Block* 🎉 {background-color="black"}
## *End of Section* 🎉 {background-color="black"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Block]](./3.2-synching_changes.html)
[[⏩️ Next Section]](./3.2-synching_changes.html)
4 changes: 2 additions & 2 deletions 3.2-synching_changes.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ git push <remote>/<branch>
- `git remote add origin <URL>`
3. Push you changes so far to GitHub

## *End of Block* 🎉 {background-color="black"}
## *End of Section* 🎉 {background-color="black"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Block]](./3.3-pages_markdown.html)
[[⏩️ Next Section]](./3.3-pages_markdown.html)
4 changes: 2 additions & 2 deletions 3.3-pages_markdown.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Website template originally from: https://github.com/academicpages/academicpages
4. Push and pull to synchronize your changes
5. Try to create a merge conflict

## *End of Section* 🎉 {background-color="black" background-opacity="0.4" background-image="images/backgrounds/dolomites.jpg"}
## *End of Block* 🎉 {background-color="black" background-opacity="0.4" background-image="images/backgrounds/dolomites.jpg"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Section]](./4.1-advanced_github.html)
[[⏩️ Next Block]](./4.1-advanced_github.html)
4 changes: 2 additions & 2 deletions 4.1-advanced_github.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ Repository: <https://github.com/microsoft/vscode>
2. Approve the pull request when you're done and all changes are implemented.
3. Merge your edits into the repository.

## *End of Block* 🎉 {background-color="black"}
## *End of Section* 🎉 {background-color="black"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Block]](./4.2-final_notes.html)
[[⏩️ Next Section]](./4.2-final_notes.html)
4 changes: 2 additions & 2 deletions 4.2-final_notes.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ Most of the information in these guides, we already covered, but they can be gre

![I hope this makes sense to you after the course](images/in_case_of_fire.svg)

## *End of Section* 🎉 {background-color="black" background-opacity="0.4" background-image="images/backgrounds/dolomites.jpg"}
## *End of Block* 🎉 {background-color="black" background-opacity="0.4" background-image="images/backgrounds/dolomites.jpg"}

:::{.r-fit-text}
Any Questions?
:::

[[🏡 Back to Overview]](./index.html)

[[⏩️ Next Section]](./5.0-outro.html)
[[⏩️ Next Block]](./5.0-outro.html)

0 comments on commit fa60484

Please sign in to comment.