Skip to content

Commit 66e04f3

Browse files
committed
Merge branch 'c12_notes'
2 parents c53520c + eb0c07e commit 66e04f3

File tree

7 files changed

+1125
-0
lines changed

7 files changed

+1125
-0
lines changed

_practice/2023-10-19.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
1. Use your github-inclass repo to create a scenario where you can fix a problem using a git command from the [patching or debugging section of the docs](https://git-scm.com/docs). Create a log of what you did using the history or git log into a file {index}`gitstory.md`. If you have a project in another class or another badge in this class that causes you to use one in a real scenario, that can count. If not, for example, you could create a "bug" and then use bisect to find it.
2+
2. Create {index}`tagtypes.md` with the template below.
3+
Include an experiment that shows which if either type of tag creates a new git object. There are two types, try creating one of each a lightwight tag (provide only the tag name- what we did in class) and an annotated (provide a name and a message with `-m`). Determine many of the tags in the course website are annotated vs lightweight using what you learned about how tags are represented and `git cat-file` to see which is which.
4+
5+
6+
```
7+
# Tags
8+
9+
<!-- short defintion/description in your own words of what a tag is and what it is for -->
10+
11+
12+
## Comparing tag types
13+
14+
<!-- include your experiment terminal history and interpretation -->
15+
16+
## Inspecting tags
17+
18+
Course website tags by type:
19+
- annoted:
20+
- lightweight:
21+
```

_prepare/2023-10-24.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2. If you have not already or right before class, review the GitHub Action [files in your KWL repo](../tree/main/.github/workflows/) and make note of what if any syntax in there is unfamilar. (note that link may not work on the rendered website, but will work on issues)
2+
3. Use quote reply or edit to see how I made a relative path to a location within the repo in this issue.
3+
4. Check out the [github action marketplace](https://github.com/marketplace?type=actions) to see other actions that are available and try to get a casual level of understanding of the *types* of things that people use actions for.

_review/2023-10-19.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
1. Use git bisect to find the first bad commit in the [toy bug repo](https://github.com/introcompsys/toy_bug), save the command history and the bad commit hash to {index}`git_debug.md`
2+
2. Create {index}`tagtypeexplore.md` with the template below. Determine how many of the tags in the course website are annotated vs lightweight using `git cat-file` to inspect the tags and the `git tag` help to determine which tags are of each type.
3+
4+
5+
```
6+
# Tags
7+
8+
<!-- short defintion/description in your own words of what a tag is and what it is for -->
9+
10+
11+
## Inspecting tags
12+
13+
Course website tags by type:
14+
- annoted:
15+
- lightweight:
16+
```

activities/practice.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,11 @@ Activities:
8989

9090
Activities:
9191
```{include} ../_practice/2023-10-17.md
92+
```
93+
## 2023-10-19
94+
95+
[related notes](../notes/2023-10-19)
96+
97+
Activities:
98+
```{include} ../_practice/2023-10-19.md
9299
```

activities/prepare.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,11 @@ Activities:
7070

7171
Activities:
7272
```{include} ../_prepare/2023-10-19.md
73+
```
74+
## 2023-10-24
75+
76+
77+
78+
Activities:
79+
```{include} ../_prepare/2023-10-24.md
7380
```

activities/review.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,11 @@ Activities:
8383

8484
Activities:
8585
```{include} ../_review/2023-10-17.md
86+
```
87+
## 2023-10-19
88+
89+
[related notes](../notes/2023-10-19)
90+
91+
Activities:
92+
```{include} ../_review/2023-10-19.md
8693
```

0 commit comments

Comments
 (0)